Skip to content

Commit 008113a

Browse files
authored
Run tests in node only due to chrome driver issues (#1598)
* Run tests in node only due to chromedriver issues * run unit tests in node only on CI
1 parent 9747ea2 commit 008113a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
node-version: 12.x
9191
- run: npm install
9292
- run: npm run build:test
93-
- run: npm run test:headless
93+
- run: npm run test:node
9494
- name: Upload coverage
9595
uses: codecov/codecov-action@v1
9696
with:

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@
2626
"version:reset": "shx mv package.json.bk package.json",
2727
"test": "dojo test",
2828
"test:headless": "dojo test -u -c headless",
29+
"test:node": "dojo test -u -c built",
2930
"test:watch": "dojo test --watch",
30-
"test:ci": "run-s clean build:test test:headless",
31+
"test:ci": "run-s clean build:test test:node",
3132
"build:ce": "dojo build widget",
3233
"build:docs": "dojo build app -f docs=true -l",
3334
"build:themes": "dojo build theme",

0 commit comments

Comments
 (0)