1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-12 10:37:52 -05:00
denoland-deno/tests/specs/run/top_level_await/loop.js
Leo Kettmeir 42b71d82db
chore(lint): add .out file reference checker (#27078)
Co-authored-by: David Sherret <dsherret@gmail.com>
2024-11-26 20:53:20 -08:00

20 lines
436 B
JavaScript

const importsDir = Deno.readDirSync(
Deno.realPathSync("./tla2"),
);
const resolvedPaths = [];
for (const { name } of importsDir) {
const filePath = Deno.realPathSync(`./tla2/${name}`);
resolvedPaths.push(filePath);
}
resolvedPaths.sort();
for (const filePath of resolvedPaths) {
console.log("loading", filePath);
const mod = await import(`file://${filePath}`);
console.log("loaded", mod);
}
console.log("all loaded");