Skip to content

Instantly share code, notes, and snippets.

@moshfeu
Created October 27, 2018 20:06
Show Gist options
  • Save moshfeu/ea69b77854aa590459cfe339bd364e77 to your computer and use it in GitHub Desktop.
Save moshfeu/ea69b77854aa590459cfe339bd364e77 to your computer and use it in GitHub Desktop.
A webpack.config to run jest tests after compile
const { spawn } = require('child_process');
module.exports = {
entry: {
// ...
// add this to let webpack watch on the test files changes
tests: './test/path-to-the-tests-entry.js'
},
// ..
plugins: [
{
// add a custom webpack plugin. For more info: https://webpack.js.org/concepts/plugins/
apply: compiler => {
// add a hook to run a callback after each compile
compiler.hooks.afterCompile.tap('jest', compilation => {
// run `npm test` using `spawn` to keep the format of the terminal just like you run it manually.
// for more info: https://stackoverflow.com/a/20145153/863110
spawn('npm', ['test'], {stdio:'inherit'});
});
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment