mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
f248050cb4
This change aims to replace all relative import specifiers targeted at `tests/util/std` with mapped ones (using a `deno.json` file). Towards updating the `std` git submodule.
16 lines
627 B
TypeScript
16 lines
627 B
TypeScript
console.log("Starting the main module");
|
|
|
|
// We load the dynamic import path from the file system, to make sure any
|
|
// improvements in static analysis can't defeat the purpose of this test, which
|
|
// is to make sure the `--include` flag works to add non-analyzed imports to the
|
|
// module graph.
|
|
const IMPORT_PATH_FILE_PATH =
|
|
"./tests/testdata/compile/dynamic_imports/import_path";
|
|
|
|
setTimeout(async () => {
|
|
console.log("Dynamic importing");
|
|
const importPath = (await Deno.readTextFile(IMPORT_PATH_FILE_PATH)).trim();
|
|
import(import.meta.resolve(importPath)).then(() =>
|
|
console.log("Dynamic import done.")
|
|
);
|
|
}, 0);
|