File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,9 @@ const runTests = useTS =>
51
51
isWin ? 'win' : 'linux'
52
52
} -unpacked/${ projectName } ${ isWin ? '.exe' : '' } `,
53
53
// Make sure tests do not interfere with each other
54
- port : await portfinder . getPortPromise ( )
54
+ port : await portfinder . getPortPromise ( ) ,
55
+ // Increase wait timeout for parallel testing
56
+ waitTimeout : 10000
55
57
} )
56
58
await app . start ( )
57
59
const win = app . browserWindow
Original file line number Diff line number Diff line change @@ -51,7 +51,9 @@ const runTests = useTS =>
51
51
} ,
52
52
cwd : projectPath ( '' ) ,
53
53
// Make sure tests do not interfere with each other
54
- port : await portfinder . getPortPromise ( )
54
+ port : await portfinder . getPortPromise ( ) ,
55
+ // Increase wait timeout for parallel testing
56
+ waitTimeout : 10000
55
57
} )
56
58
57
59
await app . start ( )
You can’t perform that action at this time.
0 commit comments