2017-11-28 07:10:17 +00:00
|
|
|
// Recursively load all JS files (test files) in the `js` folder
|
2022-06-19 00:25:21 +00:00
|
|
|
// @ts-expect-error ts-migrate(2339) FIXME: Property 'context' does not exist on type 'NodeReq... Remove this comment to see the full error message
|
2017-11-28 07:10:17 +00:00
|
|
|
const context = require.context("./js", true, /.+\.js$/);
|
|
|
|
context.keys().forEach(context);
|
|
|
|
|
|
|
|
module.exports = context;
|