Files
ThreadNet-Web/test/all-tests.js
T

8 lines
206 B
JavaScript
Raw Normal View History

// all-tests.js
//
// Our master test file: uses the webpack require API to find our test files
// and run them
2017-10-11 17:56:17 +01:00
const context = require.context('.', true, /-test\.jsx?$/);
context.keys().forEach(context);