File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ for (const projectName of fs.readdirSync(playgroundDir)) {
14
14
console . log ( `Running unit tests in ${ projectName } ` )
15
15
const unitTestResult = spawnSync ( 'pnpm' , [ 'test:unit:ci' ] , {
16
16
cwd : path . resolve ( playgroundDir , projectName ) ,
17
- stdio : 'inherit'
17
+ stdio : 'inherit' ,
18
+ shell : true
18
19
} )
19
20
if ( unitTestResult . status !== 0 ) {
20
21
throw new Error ( `Unit tests failed in ${ projectName } ` )
@@ -23,7 +24,8 @@ for (const projectName of fs.readdirSync(playgroundDir)) {
23
24
console . log ( `Running e2e tests in ${ projectName } ` )
24
25
const e2eTestResult = spawnSync ( 'pnpm' , [ 'test:e2e:ci' ] , {
25
26
cwd : path . resolve ( playgroundDir , projectName ) ,
26
- stdio : 'inherit'
27
+ stdio : 'inherit' ,
28
+ shell : true
27
29
} )
28
30
if ( e2eTestResult . status !== 0 ) {
29
31
throw new Error ( `E2E tests failed in ${ projectName } ` )
You can’t perform that action at this time.
0 commit comments