summaryrefslogtreecommitdiff
path: root/tests/unit/resources_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/resources_test.ts')
-rw-r--r--tests/unit/resources_test.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/unit/resources_test.ts b/tests/unit/resources_test.ts
deleted file mode 100644
index 3c692a1a4..000000000
--- a/tests/unit/resources_test.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-
-// deno-lint-ignore-file no-deprecated-deno-api
-
-import { assertThrows } from "./test_util.ts";
-
-Deno.test(function resourcesCloseBadArgs() {
- assertThrows(() => {
- Deno.close((null as unknown) as number);
- }, TypeError);
-});