-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run Tests with Ava configuration instead of babel precompile (#66)
* First pass. not working * working now but unbearably slow * updating test webpack * removing unused function * adding webpack via babel register rather than precompile * Committing now, doesnt work * adding ava package json * Cleanup
- Loading branch information
1 parent
e31ff0a
commit 2a3458c
Showing
3 changed files
with
72 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"ava": { | ||
"babel": "inherit", | ||
"require": ["babel-register"] | ||
}, | ||
"babel": { | ||
"presets": [ | ||
"es2015", | ||
"react" | ||
], | ||
"plugins": [ | ||
[ | ||
"babel-plugin-webpack-loaders", | ||
{ | ||
"config": "${CONFIG}", | ||
"verbose": false | ||
} | ||
] | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters