Skip to content

Commit

Permalink
Merge pull request #10 from cwrc/jest
Browse files Browse the repository at this point in the history
Replace old test framework with Jest
  • Loading branch information
ajmacdonald authored Aug 22, 2019
2 parents c581fb4 + 04a2e09 commit d3afa22
Show file tree
Hide file tree
Showing 7 changed files with 3,201 additions and 3,834 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ before_script:
- npm prune
script:
- npm run test
- npm run check-coverage
after_success:
- npm run report-coverage
- npm run travis-deploy-once "npm run semantic-release"
Expand Down
14 changes: 14 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
presets: [
"@babel/preset-env"
],
plugins: [
["@babel/plugin-transform-runtime", {
"absoluteRuntime": false,
"corejs": 2,
"helpers": false,
"regenerator": true,
"useESModules": false
}]
]
}
Loading

0 comments on commit d3afa22

Please sign in to comment.