mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-06 16:21:23 +05:30
10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
import 'polyfills';
|
|
|
|
import expect from 'unexpected';
|
|
expect.use(require('unexpected-sinon'));
|
|
|
|
// require all modules ending in "_test" from the
|
|
// current directory and all subdirectories
|
|
const testsContext = require.context('.', true, /\.test\.jsx?$/);
|
|
testsContext.keys().forEach(testsContext);
|