Skip to content

Commit 65e6c02

Browse files
committed
fix: Make mkdir resilient for multiple runs.
1 parent 1411d90 commit 65e6c02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"wdio:build:app": "cd test/webdriverio && webpack",
2424
"wdio:build:tests": "tsc -p ./test/webdriverio/test/tsconfig.json",
2525
"wdio:clean": "cd test/webdriverio/test && rm -rf dist && rm -rf failures",
26-
"wdio:run": "npm run wdio:build && cd test/webdriverio/test && mkdir failures && npx mocha dist",
27-
"wdio:run:ci": "npm run wdio:build && cd test/webdriverio/test && mkdir failures && npx mocha --timeout 30000 dist"
26+
"wdio:run": "npm run wdio:build && cd test/webdriverio/test && mkdir -p failures && npx mocha dist",
27+
"wdio:run:ci": "npm run wdio:build && cd test/webdriverio/test && mkdir -p failures && npx mocha --timeout 30000 dist"
2828
},
2929
"main": "./dist/index.js",
3030
"module": "./src/index.js",

0 commit comments

Comments
 (0)