Skip to content

Commit 63fb96c

Browse files
authored
Merge #420 replace jest with mocha
2 parents 4b80f5a + 510f1cb commit 63fb96c

25 files changed

+1711
-2598
lines changed

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ module.exports = {
1414
env: {
1515
node: true,
1616
es2024: true,
17+
mocha: true,
1718
},
1819

1920
overrides: [
@@ -28,6 +29,7 @@ module.exports = {
2829
// `jest` against the compiled .js results (would require compiling
2930
// the test files as well)?
3031
'unicorn/prefer-at': 'off',
32+
'import/no-extraneous-dependencies': ['error', {'devDependencies': true, 'optionalDependencies': false, 'peerDependencies': false}],
3133
},
3234
},
3335
],

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
which nvim
9191
nvim --version
9292
93-
npm run test-build --stream
93+
npm run test-coverage --stream
9494
9595
- uses: codecov/codecov-action@v4
9696
if: matrix.node == '20'

0 commit comments

Comments
 (0)