File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
dev-packages/e2e-tests/test-applications/nextjs-turbo Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 3
3
"version" : " 0.1.0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
- "build" : " next build > .tmp_build_stdout 2> .tmp_build_stderr || (cat .tmp_build_stdout && cat .tmp_build_stderr && exit 1)" ,
6
+ "build" : " next build --turbopack > .tmp_build_stdout 2> .tmp_build_stderr || (cat .tmp_build_stdout && cat .tmp_build_stderr && exit 1)" ,
7
7
"clean" : " npx rimraf node_modules pnpm-lock.yaml" ,
8
8
"test:prod" : " TEST_ENV=production playwright test" ,
9
9
"test:dev" : " TEST_ENV=development playwright test" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ if (!testEnv) {
7
7
8
8
const config = getPlaywrightConfig (
9
9
{
10
- startCommand : testEnv === 'development' ? 'pnpm next dev -p 3030 --turbo ' : 'pnpm next start -p 3030' ,
10
+ startCommand : testEnv === 'development' ? 'pnpm next dev -p 3030 --turbopack ' : 'pnpm next start -p 3030' ,
11
11
port : 3030 ,
12
12
} ,
13
13
{
You can’t perform that action at this time.
0 commit comments