webpack-babel-jest
v1.0.4
Published
Jest plugin for working with Webpack and Babel
Downloads
7,262
Readme
webpack-babel-jest
Jest plugin for working with Webpack and Babel
It leverages Babel-Jest, and ignores any css, scss, or less file during test execution.
Usage
Make the following changes to package.json
:
{
"devDependencies": {
"webpack-babel-jest": "*",
"jest-cli": "*"
},
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/webpack-babel-jest",
"testFileExtensions": ["es6", "js"],
"moduleFileExtensions": ["js", "json", "es6"]
}
}
And run:
$ npm install
And you're good to go!