0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/test.js

7 lines
152 B
JavaScript
Raw Normal View History

2018-04-30 02:25:12 +02:00
const glob = require("tiny-glob/sync.js");
2017-06-03 04:04:36 +02:00
require("./setup");
2018-04-30 02:25:12 +02:00
glob("*/index.js", { cwd: "test" }).forEach(function(file) {
2017-06-03 04:04:36 +02:00
require("./" + file);
2018-08-04 05:30:25 +02:00
});