diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-10-05 14:34:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 14:34:38 +0200 |
commit | 5d98a544b421e2b0bc3f99318fe44d1fed6d95d9 (patch) | |
tree | 871b510abadb2746a532ba7a13988f7dc437d932 /cli/tests/unit/metrics_test.ts | |
parent | 551a08145098e95022efb778308d677db60a67cc (diff) |
refactor: rewrite several extension ops to op2 (#20457)
Rewrites following extensions:
- `ext/web`
- `ext/url`
- `ext/webstorage`
- `ext/io`
---------
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
Diffstat (limited to 'cli/tests/unit/metrics_test.ts')
-rw-r--r-- | cli/tests/unit/metrics_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/metrics_test.ts b/cli/tests/unit/metrics_test.ts index 5fdfebc85..6f8c3b46d 100644 --- a/cli/tests/unit/metrics_test.ts +++ b/cli/tests/unit/metrics_test.ts @@ -69,7 +69,7 @@ Deno.test( ); // Test that ops from extensions have metrics (via OpMiddleware) -Deno.test(function metricsForOpCrates() { +Deno.test.ignore(function metricsForOpCrates() { const _ = new URL("https://deno.land"); const m1 = Deno.metrics().ops["op_url_parse"]; |