mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
0ffcb46e0f
This reverts commit 20aa0796e6
.
`main` has been failing consistenly on `kv_undelivered_test` and
`serve_test` after this upgrade.
16 lines
613 B
TypeScript
16 lines
613 B
TypeScript
// Copyright 2018-2023 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/testing/asserts.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);
|
|
});
|