deno/tests/unit_node/path_test.ts
Asher Gomez 92f6188253
chore: use @std import instead of @test_util/std (#22398)
This PR:
1. Replaces `@test_util/std`-prefixed imports with `@std`.
2. Adds `@std/` import map entries to a few `deno.json` files.
2024-02-13 02:05:10 +00:00

17 lines
590 B
TypeScript

// 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 "@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);
});