9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
|
// Include the mocha css
|
||
|
require('mocha/mocha.css');
|
||
|
|
||
|
// Setup mocha and set it to run tests on window load
|
||
|
require('./setup-mocha');
|
||
|
|
||
|
// Add any new tests to `tests/index.js`
|
||
|
require('./index');
|