mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-25 09:09:35 +01:00
7 lines
152 B
JavaScript
7 lines
152 B
JavaScript
const glob = require("tiny-glob/sync.js");
|
|
|
|
require("./setup");
|
|
|
|
glob("*/index.js", { cwd: "test" }).forEach(function(file) {
|
|
require("./" + file);
|
|
}); |