Skip to content

Commit 8d62eac

Browse files
committed
fi ci
1 parent ba08d19 commit 8d62eac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- name: Build
9292
run: npm run -s build
9393
- name: Test
94-
run: npm run -s test:mocha
94+
run: npm run -s test:cover
9595
- name: Send Coverage
9696
run: npm run -s codecov
9797
env:

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@
7272
"setup": "git submodule update --init && cd test/fixtures/eslint && npm install",
7373
"pretest": "run-s build lint",
7474
"test": "npm run -s test:mocha",
75-
"test:mocha": "nyc mocha \"test/*.js\" --reporter dot --timeout 60000",
75+
"test:mocha": "mocha \"test/*.js\" --reporter dot --timeout 60000",
76+
"test:cover": "nyc npm run test:mocha",
7677
"test:debug": "mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000",
7778
"preupdate-fixtures": "npm run -s build",
7879
"update-fixtures": "node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js",

0 commit comments

Comments
 (0)