1.0.4 • Published 8 years ago

webpack-babel-jest v1.0.4

Weekly downloads
2,934
License
ISC
Repository
github
Last release
8 years ago

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.

Webpack Babel jest plugin

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!