diff options
| author | Andy Hayden <andyhayden1@gmail.com> | 2021-04-30 12:51:48 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-30 15:51:48 -0400 |
| commit | 684c357136fd44f9d5a1b8bb4402400ed1354677 (patch) | |
| tree | ebc14b1d01b6643dd4d588516692dffc0f8fcb52 /cli/tests | |
| parent | abaec7a88e991188d885bede652f35d76ab4f340 (diff) | |
Rename crate_ops to extensions (#10431)
Diffstat (limited to 'cli/tests')
| -rw-r--r-- | cli/tests/error_009_extensions_error.js (renamed from cli/tests/error_009_op_crates_error.js) | 0 | ||||
| -rw-r--r-- | cli/tests/error_009_extensions_error.js.out (renamed from cli/tests/error_009_op_crates_error.js.out) | 2 | ||||
| -rw-r--r-- | cli/tests/integration_tests.rs | 6 | ||||
| -rw-r--r-- | cli/tests/unit/metrics_test.ts | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/cli/tests/error_009_op_crates_error.js b/cli/tests/error_009_extensions_error.js index 01b97ea38..01b97ea38 100644 --- a/cli/tests/error_009_op_crates_error.js +++ b/cli/tests/error_009_extensions_error.js diff --git a/cli/tests/error_009_op_crates_error.js.out b/cli/tests/error_009_extensions_error.js.out index 229a0ff1f..96ffb2829 100644 --- a/cli/tests/error_009_op_crates_error.js.out +++ b/cli/tests/error_009_extensions_error.js.out @@ -2,5 +2,5 @@ new Event(); ^ at [WILDCARD] - at new Event (deno:op_crates/web/[WILDCARD]) + at new Event (deno:extensions/web/[WILDCARD]) at [WILDCARD] diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 9c56396b4..0b7b85ac8 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3109,9 +3109,9 @@ console.log("finish"); output: "error_008_checkjs.js.out", }); - itest!(error_009_op_crates_error { - args: "run error_009_op_crates_error.js", - output: "error_009_op_crates_error.js.out", + itest!(error_009_extensions_error { + args: "run error_009_extensions_error.js", + output: "error_009_extensions_error.js.out", exit_code: 1, }); diff --git a/cli/tests/unit/metrics_test.ts b/cli/tests/unit/metrics_test.ts index 25c63dbc1..a1936cb1d 100644 --- a/cli/tests/unit/metrics_test.ts +++ b/cli/tests/unit/metrics_test.ts @@ -70,7 +70,7 @@ unitTest( }, ); -// Test that ops from op_crates have metrics (via OpMiddleware) +// Test that ops from extensions have metrics (via OpMiddleware) unitTest(function metricsForOpCrates(): void { const _ = new URL("https://deno.land"); |
