File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -490,6 +490,7 @@ jobs:
490
490
NODE_VERSION : ${{ matrix.node }}
491
491
run : |
492
492
cd packages/nextjs
493
+ yarn playwright install-deps
493
494
yarn test:integration
494
495
495
496
# Ember tests are separate from the rest because they are the slowest part of the test suite, and making them a
Original file line number Diff line number Diff line change 68
68
"test:build" : " yarn ts-node test/buildProcess/runTest.ts" ,
69
69
"test:unit" : " jest" ,
70
70
"test:integration" : " ./test/run-integration-tests.sh && yarn test:types" ,
71
- "test:integration:ci" : " run-s test:integration:clean test:integration:client:ci test:integration:server" ,
72
71
"test:integration:prepare" : " (cd test/integration && yarn build && yarn start)" ,
73
72
"test:integration:clean" : " (cd test/integration && rimraf .cache node_modules build)" ,
74
- "test:integration:client" : " yarn playwright install-deps && yarn playwright test test/integration/test/client/" ,
73
+ "test:integration:client" : " yarn playwright test test/integration/test/client/" ,
75
74
"test:integration:client:ci" : " yarn test:integration:client --browser='all' --reporter='line'" ,
76
75
"test:integration:server" : " export NODE_OPTIONS='--stack-trace-limit=25' && jest --config=test/integration/jest.config.js test/integration/test/server/" ,
77
76
"test:types" : " cd test/types && yarn test" ,
Original file line number Diff line number Diff line change 1
1
import type { PlaywrightTestConfig } from '@playwright/test' ;
2
2
3
3
const config : PlaywrightTestConfig = {
4
- retries : 2 ,
4
+ retries : 0 , // We do not accept flakes.
5
5
timeout : 12000 ,
6
6
use : {
7
7
baseURL : 'http://localhost:3000' ,
You can’t perform that action at this time.
0 commit comments