mirror of
https://github.com/thelounge/thelounge.git
synced 2026-03-18 00:09:55 +01: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;
|