2016-04-07 18:49:39 +02:00
|
|
|
// all-tests.js
|
2016-03-24 23:59:01 +01:00
|
|
|
//
|
|
|
|
// Our master test file: uses the webpack require API to find our test files
|
|
|
|
// and run them
|
|
|
|
|
2017-10-11 18:56:17 +02:00
|
|
|
const context = require.context('.', true, /-test\.jsx?$/);
|
2016-03-24 23:59:01 +01:00
|
|
|
context.keys().forEach(context);
|