diff options
author | Bert Belder <bertbelder@gmail.com> | 2021-06-23 15:46:15 +0000 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2021-06-23 19:36:04 +0000 |
commit | 5a250b9e5529fa6af797a9ce5c3e612be49ea538 (patch) | |
tree | 8b3fde535f2e7e9487b5a0ebfd44b9aebdf1b847 /tools/util.js | |
parent | abd7a8a9cdc407169993c4282d45ec9f717c74bd (diff) |
tests: fix bug in WPT test harness (#10920)
Diffstat (limited to 'tools/util.js')
-rw-r--r-- | tools/util.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/util.js b/tools/util.js index cd9e30314..c40db305c 100644 --- a/tools/util.js +++ b/tools/util.js @@ -3,9 +3,10 @@ import { dirname, fromFileUrl, join, + resolve, toFileUrl, } from "https://deno.land/std@0.84.0/path/mod.ts"; -export { dirname, fromFileUrl, join, toFileUrl }; +export { dirname, fromFileUrl, join, resolve, toFileUrl }; export { existsSync } from "https://deno.land/std@0.84.0/fs/mod.ts"; export { readLines } from "https://deno.land/std@0.97.0/io/mod.ts"; export { delay } from "https://deno.land/std@0.84.0/async/delay.ts"; |