summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/integration/run_tests.rs12
-rw-r--r--cli/tests/testdata/run/error_009_extensions_error.js.out2
-rw-r--r--cli/tests/testdata/run/extension_dynamic_import.ts1
-rw-r--r--cli/tests/testdata/run/extension_dynamic_import.ts.out4
-rw-r--r--cli/tests/testdata/run/extension_import.ts1
-rw-r--r--cli/tests/testdata/run/extension_import.ts.out8
-rw-r--r--cli/tests/testdata/run/fetch_async_error_stack.ts.out2
-rw-r--r--cli/tests/testdata/run/internal_dynamic_import.ts1
-rw-r--r--cli/tests/testdata/run/internal_dynamic_import.ts.out4
-rw-r--r--cli/tests/testdata/run/internal_import.ts1
-rw-r--r--cli/tests/testdata/run/internal_import.ts.out8
-rw-r--r--cli/tests/testdata/run/queue_microtask_error.ts.out2
-rw-r--r--cli/tests/testdata/run/queue_microtask_error_handled.ts.out4
-rw-r--r--cli/tests/testdata/run/wasm_streaming_panic_test.js.out2
-rw-r--r--cli/tests/testdata/run/worker_drop_handle_race.js.out6
-rw-r--r--cli/tests/testdata/test/steps/failing_steps.out8
-rw-r--r--cli/tests/unit/opcall_test.ts4
17 files changed, 35 insertions, 35 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs
index 3b1f740b2..239311975 100644
--- a/cli/tests/integration/run_tests.rs
+++ b/cli/tests/integration/run_tests.rs
@@ -4048,14 +4048,14 @@ itest!(node_prefix_missing {
exit_code: 1,
});
-itest!(internal_import {
- args: "run run/internal_import.ts",
- output: "run/internal_import.ts.out",
+itest!(extension_import {
+ args: "run run/extension_import.ts",
+ output: "run/extension_import.ts.out",
exit_code: 1,
});
-itest!(internal_dynamic_import {
- args: "run run/internal_dynamic_import.ts",
- output: "run/internal_dynamic_import.ts.out",
+itest!(extension_dynamic_import {
+ args: "run run/extension_dynamic_import.ts",
+ output: "run/extension_dynamic_import.ts.out",
exit_code: 1,
});
diff --git a/cli/tests/testdata/run/error_009_extensions_error.js.out b/cli/tests/testdata/run/error_009_extensions_error.js.out
index 36fc6af26..ec286a60a 100644
--- a/cli/tests/testdata/run/error_009_extensions_error.js.out
+++ b/cli/tests/testdata/run/error_009_extensions_error.js.out
@@ -2,5 +2,5 @@
new Event();
^
at [WILDCARD]
- at new Event (internal:deno_web/[WILDCARD])
+ at new Event (ext:deno_web/[WILDCARD])
at [WILDCARD]
diff --git a/cli/tests/testdata/run/extension_dynamic_import.ts b/cli/tests/testdata/run/extension_dynamic_import.ts
new file mode 100644
index 000000000..6fb3ac3a0
--- /dev/null
+++ b/cli/tests/testdata/run/extension_dynamic_import.ts
@@ -0,0 +1 @@
+await import("ext:runtime/01_errors.js");
diff --git a/cli/tests/testdata/run/extension_dynamic_import.ts.out b/cli/tests/testdata/run/extension_dynamic_import.ts.out
new file mode 100644
index 000000000..18b05ea47
--- /dev/null
+++ b/cli/tests/testdata/run/extension_dynamic_import.ts.out
@@ -0,0 +1,4 @@
+error: Uncaught TypeError: Cannot load extension module from external code
+await import("ext:runtime/01_errors.js");
+^
+ at [WILDCARD]/extension_dynamic_import.ts:1:1
diff --git a/cli/tests/testdata/run/extension_import.ts b/cli/tests/testdata/run/extension_import.ts
new file mode 100644
index 000000000..7bbbab799
--- /dev/null
+++ b/cli/tests/testdata/run/extension_import.ts
@@ -0,0 +1 @@
+import "ext:runtime/01_errors.js";
diff --git a/cli/tests/testdata/run/extension_import.ts.out b/cli/tests/testdata/run/extension_import.ts.out
new file mode 100644
index 000000000..f1d9d5eb2
--- /dev/null
+++ b/cli/tests/testdata/run/extension_import.ts.out
@@ -0,0 +1,8 @@
+error: Unsupported scheme "ext" for module "ext:runtime/01_errors.js". Supported schemes: [
+ "data",
+ "blob",
+ "file",
+ "http",
+ "https",
+]
+ at [WILDCARD]
diff --git a/cli/tests/testdata/run/fetch_async_error_stack.ts.out b/cli/tests/testdata/run/fetch_async_error_stack.ts.out
index 8ca670847..e8169228f 100644
--- a/cli/tests/testdata/run/fetch_async_error_stack.ts.out
+++ b/cli/tests/testdata/run/fetch_async_error_stack.ts.out
@@ -1,5 +1,5 @@
error: Uncaught (in promise) TypeError: error sending request for url[WILDCARD]
await fetch("https://nonexistent.deno.land/");
^[WILDCARD]
- at async fetch (internal:[WILDCARD])
+ at async fetch (ext:[WILDCARD])
at async file:///[WILDCARD]/fetch_async_error_stack.ts:1:1
diff --git a/cli/tests/testdata/run/internal_dynamic_import.ts b/cli/tests/testdata/run/internal_dynamic_import.ts
deleted file mode 100644
index 9dd2ce2e1..000000000
--- a/cli/tests/testdata/run/internal_dynamic_import.ts
+++ /dev/null
@@ -1 +0,0 @@
-await import("internal:runtime/01_errors.js");
diff --git a/cli/tests/testdata/run/internal_dynamic_import.ts.out b/cli/tests/testdata/run/internal_dynamic_import.ts.out
deleted file mode 100644
index 3deb9366e..000000000
--- a/cli/tests/testdata/run/internal_dynamic_import.ts.out
+++ /dev/null
@@ -1,4 +0,0 @@
-error: Uncaught TypeError: Cannot load internal module from external code
-await import("internal:runtime/01_errors.js");
-^
- at [WILDCARD]/internal_dynamic_import.ts:1:1
diff --git a/cli/tests/testdata/run/internal_import.ts b/cli/tests/testdata/run/internal_import.ts
deleted file mode 100644
index 2cb834d33..000000000
--- a/cli/tests/testdata/run/internal_import.ts
+++ /dev/null
@@ -1 +0,0 @@
-import "internal:runtime/01_errors.js";
diff --git a/cli/tests/testdata/run/internal_import.ts.out b/cli/tests/testdata/run/internal_import.ts.out
deleted file mode 100644
index ca82cc21e..000000000
--- a/cli/tests/testdata/run/internal_import.ts.out
+++ /dev/null
@@ -1,8 +0,0 @@
-error: Unsupported scheme "internal" for module "internal:runtime/01_errors.js". Supported schemes: [
- "data",
- "blob",
- "file",
- "http",
- "https",
-]
- at [WILDCARD]
diff --git a/cli/tests/testdata/run/queue_microtask_error.ts.out b/cli/tests/testdata/run/queue_microtask_error.ts.out
index c1af4fec9..a8ce13170 100644
--- a/cli/tests/testdata/run/queue_microtask_error.ts.out
+++ b/cli/tests/testdata/run/queue_microtask_error.ts.out
@@ -3,4 +3,4 @@ error: Uncaught Error: foo
throw new Error("foo");
^
at [WILDCARD]/queue_microtask_error.ts:2:9
- at internal:core/[WILDCARD]
+ at ext:core/[WILDCARD]
diff --git a/cli/tests/testdata/run/queue_microtask_error_handled.ts.out b/cli/tests/testdata/run/queue_microtask_error_handled.ts.out
index 9105570b3..bdc8eafa1 100644
--- a/cli/tests/testdata/run/queue_microtask_error_handled.ts.out
+++ b/cli/tests/testdata/run/queue_microtask_error_handled.ts.out
@@ -7,9 +7,9 @@
colno: 9,
error: Error: foo
at [WILDCARD]/queue_microtask_error_handled.ts:18:9
- at internal:core/[WILDCARD]
+ at ext:core/[WILDCARD]
}
onerror() called Error: foo
at [WILDCARD]/queue_microtask_error_handled.ts:18:9
- at internal:core/[WILDCARD]
+ at ext:core/[WILDCARD]
2
diff --git a/cli/tests/testdata/run/wasm_streaming_panic_test.js.out b/cli/tests/testdata/run/wasm_streaming_panic_test.js.out
index eec1e3b96..8a3c68e37 100644
--- a/cli/tests/testdata/run/wasm_streaming_panic_test.js.out
+++ b/cli/tests/testdata/run/wasm_streaming_panic_test.js.out
@@ -1,2 +1,2 @@
error: Uncaught (in promise) TypeError: Invalid WebAssembly content type.
- at handleWasmStreaming (internal:deno_fetch/26_fetch.js:[WILDCARD])
+ at handleWasmStreaming (ext:deno_fetch/26_fetch.js:[WILDCARD])
diff --git a/cli/tests/testdata/run/worker_drop_handle_race.js.out b/cli/tests/testdata/run/worker_drop_handle_race.js.out
index d78535944..b176413cf 100644
--- a/cli/tests/testdata/run/worker_drop_handle_race.js.out
+++ b/cli/tests/testdata/run/worker_drop_handle_race.js.out
@@ -2,7 +2,7 @@ error: Uncaught (in worker "") Error
throw new Error();
^
at [WILDCARD]/workers/drop_handle_race.js:2:9
- at Object.action (internal:deno_web/02_timers.js:[WILDCARD])
- at handleTimerMacrotask (internal:deno_web/02_timers.js:[WILDCARD])
+ at Object.action (ext:deno_web/02_timers.js:[WILDCARD])
+ at handleTimerMacrotask (ext:deno_web/02_timers.js:[WILDCARD])
error: Uncaught (in promise) Error: Unhandled error in child worker.
- at Worker.#pollControl (internal:runtime/11_workers.js:[WILDCARD])
+ at Worker.#pollControl (ext:runtime/11_workers.js:[WILDCARD])
diff --git a/cli/tests/testdata/test/steps/failing_steps.out b/cli/tests/testdata/test/steps/failing_steps.out
index a63058999..c68889c8d 100644
--- a/cli/tests/testdata/test/steps/failing_steps.out
+++ b/cli/tests/testdata/test/steps/failing_steps.out
@@ -37,13 +37,13 @@ failing step in failing test ... FAILED ([WILDCARD])
nested failure => ./test/steps/failing_steps.ts:[WILDCARD]
error: Error: 1 test step failed.
- at runTest (internal:cli/40_testing.js:[WILDCARD])
- at async runTests (internal:cli/40_testing.js:[WILDCARD])
+ at runTest (ext:cli/40_testing.js:[WILDCARD])
+ at async runTests (ext:cli/40_testing.js:[WILDCARD])
multiple test step failures => ./test/steps/failing_steps.ts:[WILDCARD]
error: Error: 2 test steps failed.
- at runTest (internal:cli/40_testing.js:[WILDCARD])
- at async runTests (internal:cli/40_testing.js:[WILDCARD])
+ at runTest (ext:cli/40_testing.js:[WILDCARD])
+ at async runTests (ext:cli/40_testing.js:[WILDCARD])
failing step in failing test => ./test/steps/failing_steps.ts:[WILDCARD]
error: Error: Fail test.
diff --git a/cli/tests/unit/opcall_test.ts b/cli/tests/unit/opcall_test.ts
index fb7766e4f..8985c9780 100644
--- a/cli/tests/unit/opcall_test.ts
+++ b/cli/tests/unit/opcall_test.ts
@@ -16,8 +16,8 @@ Deno.test(async function sendAsyncStackTrace() {
assertStringIncludes(s, "opcall_test.ts");
assertStringIncludes(s, "read");
assert(
- !s.includes("internal:core"),
- "opcall stack traces should NOT include internal:core internals such as unwrapOpResult",
+ !s.includes("ext:core"),
+ "opcall stack traces should NOT include ext:core internals such as unwrapOpResult",
);
}
});