summaryrefslogtreecommitdiff
path: root/cli/tests/unit/symbol_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/symbol_test.ts')
-rw-r--r--cli/tests/unit/symbol_test.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/tests/unit/symbol_test.ts b/cli/tests/unit/symbol_test.ts
deleted file mode 100644
index 54db7f5ba..000000000
--- a/cli/tests/unit/symbol_test.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { assert } from "./test_util.ts";
-
-// Test that `Symbol.metadata` is defined. This file can be removed when V8
-// supports `Symbol.metadata` natively.
-
-Deno.test(
- function symbolMetadataIsDefined() {
- assert(typeof Symbol.metadata === "symbol");
- },
-);