Skip to content

Commit

Permalink
Cleanup mocha testing cruft.
Browse files Browse the repository at this point in the history
  • Loading branch information
nellh committed Oct 5, 2018
1 parent ab98b2d commit 53cf981
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 138 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Expand Up @@ -9,7 +9,7 @@
"browser": true,
"commonjs": true,
"node": true,
"mocha": true
"jest": true
},
"globals": {
"Uint8Array": false
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -7,3 +7,4 @@ npm-debug.log
.ipynb_checkpoints
package-lock.json
.nyc_output/
coverage/
6 changes: 2 additions & 4 deletions package.json
Expand Up @@ -12,8 +12,8 @@
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js ./**/*.js",
"test": "./node_modules/.bin/mocha tests/ tests/**/**.spec.js '**/__tests__/*.js' --exclude 'node_modules/**/*'",
"coverage": "./node_modules/.bin/nyc yarn test",
"test": "./node_modules/.bin/jest",
"coverage": "./node_modules/.bin/jest --coverage",
"codecov": "./node_modules/.bin/codecov",
"npmPublish": "publish"
},
Expand Down Expand Up @@ -49,10 +49,8 @@
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^1.0.0-rc.13",
"istanbul": "^0.4.5",
"jest": "^23.6.0",
"jest-environment-node": "^23.4.0",
"mocha": "^5.2.0",
"npm-cli-login": "^0.0.10",
"nyc": "^13.0.1",
"prettier": "^1.14.2",
Expand Down

0 comments on commit 53cf981

Please sign in to comment.