1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/testdata/run/fix_dynamic_import_errors.js

8 lines
199 B
JavaScript
Raw Normal View History

import("../dynamic_import/b.js").catch(() => {
console.log("caught import error from b.js");
});
import("../dynamic_import/c.js").catch(() => {
console.log("caught import error from c.js");
});