Skip to content

Commit

Permalink
chore: use c8 instead of experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
christophehurpeau committed Aug 15, 2024
1 parent 335c51f commit 190bc19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: yarn install --immutable

- name: Generate Coverage
run: NODE_V8_COVERAGE=./docs/coverage yarn test:coverage:lcov
run: NODE_V8_COVERAGE=./docs/coverage yarn test:coverage

- name: Create nojekyll
run: touch docs/.nojekyll
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
"postinstallDev": "pob-root-postinstall",
"test": "node --test lib/**/*.test.js",
"test-typings": "tsc -p typings/tsconfig.json",
"test:coverage": "node --test --experimental-test-coverage lib/**/*.test.js",
"test:coverage:json": "node --test --experimental-test-coverage lib/**/*.test.js",
"test:coverage:lcov": "node --test --experimental-test-coverage --test-reporter=lcov lib/**/*.test.js",
"test:coverage": "npx c8 --all --src ./lib node --test lib/**/*.test.js",
"test:coverage:json": "npx c8 --reporter=json --all --src ./lib node --test lib/**/*.test.js",
"test:coverage:lcov": "npx c8 --reporter=lcov --all --src ./lib node --test lib/**/*.test.js",
"test:watch": "node --test lib/**/*.test.js"
},
"commitlint": {
Expand Down

0 comments on commit 190bc19

Please sign in to comment.