We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e210fe commit 2187b2cCopy full SHA for 2187b2c
.github/workflows/test.yml
@@ -15,7 +15,7 @@ permissions:
15
jobs:
16
webdriverio_tests_tip_of_tree_v12:
17
name: WebdriverIO tests (against tip-of-tree core develop)
18
- timeout-minutes: 10
+ # timeout-minutes: 10
19
runs-on: ${{ matrix.os }}
20
21
strategy:
@@ -60,13 +60,19 @@ jobs:
60
npm link blockly
61
cd ..
62
63
- - name: Run tests
+ - name: Build tests
64
run: |
65
cd main
66
+ npm run wdio:clean
67
+ npm run wdio:build
68
+
69
+ - name: Run tests (up to 50 times)
70
+ run: |
71
+ cd test/webdriverio/test
72
for i in $(seq 1 50);
73
do
74
echo "Attempt $i"
- npm run test:ci
75
+ npx mocha --timeout 30000 dist
76
done
77
78
webdriverio_tests:
0 commit comments