diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-11-15 17:09:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 17:09:19 +0000 |
commit | dee94473c435b38b2d7829731804ac96e6856d9c (patch) | |
tree | 9091efd15222fa8e58ee4b703fd347d989026317 /tests/testdata | |
parent | b8cf2599242a9d85d03b57d3649ccdf8bce1530e (diff) |
fix: update message for unsupported schemes with npm and jsr (#26884)
Closes https://github.com/denoland/deno/issues/26596
Diffstat (limited to 'tests/testdata')
-rw-r--r-- | tests/testdata/run/extension_import.ts.out | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/testdata/run/extension_import.ts.out b/tests/testdata/run/extension_import.ts.out index 88039a9ce..0ff656a9c 100644 --- a/tests/testdata/run/extension_import.ts.out +++ b/tests/testdata/run/extension_import.ts.out @@ -1,8 +1,9 @@ -error: Unsupported scheme "ext" for module "ext:runtime/01_errors.js". Supported schemes: [ - "data", - "blob", - "file", - "http", - "https", -] +error: Unsupported scheme "ext" for module "ext:runtime/01_errors.js". Supported schemes: + - "blob" + - "data" + - "file" + - "http" + - "https" + - "jsr" + - "npm" at [WILDCARD]/extension_import.ts:1:8 |