An introduction on unit testing a ReactJS component using Webpack and Jasmine. Learn how to use Webpack to package and import dependencies plus take advantage of the babel-loader to write a simple Jasmine spec using the latest ES6 syntax.
FYI, ES6 runs in implicit 'use strict'; mode, so transpilers (like babel
) will add 'use strict';
to the output. :-)
Cheers Kent, I've updated the code on Github to reflect this mate, thanks.
Is it possible to do a webpack , jasmine (or Jest) AND a test runner like karma ? This is useful but how would I incorporate tests into a build process , not just run tests ? Hope I make my self clear