Created
October 27, 2018 20:06
-
-
Save moshfeu/ea69b77854aa590459cfe339bd364e77 to your computer and use it in GitHub Desktop.
A webpack.config to run jest tests after compile
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
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