mirror of
https://github.com/wassname/react-webpack-template.git
synced 2026-06-27 19:32:12 +08:00
9 lines
252 B
JavaScript
9 lines
252 B
JavaScript
'use strict';
|
|
|
|
require('babel-polyfill');
|
|
require('core-js/fn/object/assign');
|
|
|
|
// Add support for all files in the test directory
|
|
const testsContext = require.context('.', true, /(Test\.js$)|(Helper\.js$)/);
|
|
testsContext.keys().forEach(testsContext);
|