summaryrefslogtreecommitdiff
path: root/tests/node_compat/runner
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-07-25 15:30:28 +1000
committerGitHub <noreply@github.com>2024-07-25 15:30:28 +1000
commit5f44148e83bb0056b7a361dd6a1bf28d11f3116d (patch)
treee73ff318a69cabedf33a962be6fa6c73e6775f3e /tests/node_compat/runner
parent84b7504d0fdccc07b9f7412408c954ae07765ccb (diff)
chore: update to `std@2024.07.19` (#24715)
Diffstat (limited to 'tests/node_compat/runner')
-rw-r--r--tests/node_compat/runner/deno.json5
-rwxr-xr-xtests/node_compat/runner/setup.ts12
2 files changed, 7 insertions, 10 deletions
diff --git a/tests/node_compat/runner/deno.json b/tests/node_compat/runner/deno.json
index e29d224c9..972e817e0 100644
--- a/tests/node_compat/runner/deno.json
+++ b/tests/node_compat/runner/deno.json
@@ -1,8 +1,5 @@
{
- "imports": {
- "@test_util/": "../../test_util/",
- "@std/": "../../util/std/"
- },
+ "importMap": "../../../import_map.json",
"tasks": {
"setup": "deno run --allow-read --allow-write ./setup.ts",
"test": "deno test -A ../test.ts --"
diff --git a/tests/node_compat/runner/setup.ts b/tests/node_compat/runner/setup.ts
index 5ef0bc3db..95fee6a20 100755
--- a/tests/node_compat/runner/setup.ts
+++ b/tests/node_compat/runner/setup.ts
@@ -3,12 +3,12 @@
/** This copies the test files according to the config file `tests/node_compat/config.jsonc` */
-import { walk } from "@std/fs/walk.ts";
-import { SEPARATOR } from "@std/path/constants.ts";
-import { ensureFile } from "@std/fs/ensure_file.ts";
-import { writeAll } from "@std/io/write_all.ts";
-import { withoutAll } from "@std/collections/without_all.ts";
-import { relative } from "@std/path/posix/relative.ts";
+import { walk } from "@std/fs/walk";
+import { SEPARATOR } from "@std/path/constants";
+import { ensureFile } from "@std/fs/ensure-file";
+import { writeAll } from "@std/io/write-all";
+import { withoutAll } from "@std/collections/without-all";
+import { relative } from "@std/path/posix/relative";
import { config, ignoreList } from "../common.ts";