diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-07-18 20:05:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 20:05:26 +0200 |
commit | 999cbfb52bc42c58467e3592d5fead9c4ee8a2c1 (patch) | |
tree | 5f5336420b675e15cfaa44cf205171623a3f4ab1 /cli/tests/integration/run_tests.rs | |
parent | 0d73eb3dd91b5b34bb6c38a25a4e6aac411d38f3 (diff) |
feat: import.meta.resolve() (#15074)
This commit adds new "import.meta.resolve()" API which
allows to resolve specifiers relative to the module the API
is called in. This API supports resolving using import maps.
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index bb46fe1b5..6ed1d5964 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -952,7 +952,7 @@ itest!(if_main { }); itest!(import_meta { - args: "run --quiet --reload import_meta.ts", + args: "run --quiet --reload --import-map=import_meta.importmap.json import_meta.ts", output: "import_meta.ts.out", }); |