Skip to content

Commit f4458f3

Browse files
committed
Add fix for windows
1 parent b0df822 commit f4458f3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/cli/CLI.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export class CLI {
6868

6969
const cmd = spawn(args[0], args.slice(1), {
7070
cwd,
71+
shell: true,
7172
env: {
7273
...process.env,
7374
...getEnvConfig(),

wdio.conf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const config: Options.Testrunner = {
2929
],
3030
services: ['vscode'],
3131
logLevel: 'warn',
32-
waitforTimeout: 40000,
32+
waitforTimeout: 20000,
3333
// If you only want to run your tests until a specific amount of tests have failed use
3434
// bail (default is 0 - don't bail, run all tests).
3535
bail: 0,

0 commit comments

Comments
 (0)