Skip to content

Commit

Permalink
feat(build/test): replace test framework with jest
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmacdonald committed Aug 23, 2019
1 parent 6a00296 commit 8b19fd8
Show file tree
Hide file tree
Showing 7 changed files with 5,393 additions and 5,915 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 8b19fd8

Please sign in to comment.