summaryrefslogtreecommitdiff
path: root/cli/tests/unit_node/path_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit_node/path_test.ts')
-rw-r--r--cli/tests/unit_node/path_test.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/cli/tests/unit_node/path_test.ts b/cli/tests/unit_node/path_test.ts
deleted file mode 100644
index a6c4ec5a8..000000000
--- a/cli/tests/unit_node/path_test.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-
-import path from "node:path";
-import posix from "node:path/posix";
-import win32 from "node:path/win32";
-
-import { assertStrictEquals } from "@test_util/std/assert/mod.ts";
-
-Deno.test("[node/path] posix and win32 objects", () => {
- assertStrictEquals(path.posix, posix);
- assertStrictEquals(path.win32, win32);
- assertStrictEquals(path.posix, path.posix.posix);
- assertStrictEquals(path.win32, path.posix.win32);
- assertStrictEquals(path.posix, path.win32.posix);
- assertStrictEquals(path.win32, path.win32.win32);
-});