3 lines
119 B
JavaScript
3 lines
119 B
JavaScript
|
|
// test_index.js
|
||
|
|
var testsContext = require.context(".", true, /_spec.js$/);
|
||
|
|
testsContext.keys().forEach(testsContext);
|