summaryrefslogtreecommitdiff
path: root/tools/util.js
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-01-27 15:06:18 +0100
committerGitHub <noreply@github.com>2021-01-27 15:06:18 +0100
commit2638aa03a5c3f7f4740ea7bee22127c01eb47a3c (patch)
tree16a27215e5a3105af51d3c4405a171eab6262148 /tools/util.js
parentecfda65effab41b8ca0ab65955d0542304437491 (diff)
tests: new typescript WPT runner (#9269)
Diffstat (limited to 'tools/util.js')
-rw-r--r--tools/util.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/util.js b/tools/util.js
index 089f2e592..f14aca697 100644
--- a/tools/util.js
+++ b/tools/util.js
@@ -3,9 +3,11 @@ import {
dirname,
fromFileUrl,
join,
-} from "https://deno.land/std@0.76.0/path/mod.ts";
+} from "https://deno.land/std@0.84.0/path/mod.ts";
export { dirname, join };
-export { existsSync } from "https://deno.land/std@0.76.0/fs/mod.ts";
+export { existsSync } from "https://deno.land/std@0.84.0/fs/mod.ts";
+export { readLines } from "https://deno.land/std@0.84.0/io/mod.ts";
+export { delay } from "https://deno.land/std@0.84.0/async/delay.ts";
export const ROOT_PATH = dirname(dirname(fromFileUrl(import.meta.url)));