mirror of
https://github.com/thelounge/thelounge
synced 2025-02-17 05:38:25 +00:00
7 lines
198 B
JavaScript
7 lines
198 B
JavaScript
"use strict";
|
|
|
|
// Recursively load all JS files (test files) in the `js` folder
|
|
const context = require.context("./js", true, /.+\.js$/);
|
|
context.keys().forEach(context);
|
|
|
|
module.exports = context;
|