Skip to content

Commit 7943a2f

Browse files
authored
Replace mocha with jest (#340)
* Remove unnecessary export-default-from * Remove unused scripts * Replace mocha with jest * Replace chai with jest * Refresh package-lock.json * Fix package.json import * Fix CI workflow
1 parent 2c21d63 commit 7943a2f

15 files changed

Lines changed: 2814 additions & 2221 deletions

.babelrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"presets": [
33
["@babel/preset-env", { "targets": "defaults" }]
4-
],
5-
"plugins": ["@babel/plugin-proposal-export-default-from"]
4+
]
65
}

.codeclimate.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@ jobs:
1919
cache: 'npm'
2020
- run: npm ci
2121
- run: npm run build
22-
- run: npm run build-dist
2322
- run: npm run test
2423
- run: npm run lint

.mocharc.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

.nycrc

Lines changed: 0 additions & 28 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
build: node_modules
22
npm run build
3-
dist: node_modules
4-
npm run build && npm run build-dist
53
clean:
6-
rm -rf build
74
rm -rf dist
85
rm -rf coverage
96
test: node_modules

0 commit comments

Comments
 (0)