diff options
Diffstat (limited to 'std/path/resolve_test.ts')
-rw-r--r-- | std/path/resolve_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/path/resolve_test.ts b/std/path/resolve_test.ts index 95aa84cce..36a537b7a 100644 --- a/std/path/resolve_test.ts +++ b/std/path/resolve_test.ts @@ -34,7 +34,7 @@ const posixTests = [["/foo/tmp.3/", "../tmp.3/cycles/root.js"], "/foo/tmp.3/cycles/root.js"], ]; -test(function resolve() { +test("resolve", function () { posixTests.forEach(function (p) { const _p = p[0] as string[]; const actual = path.posix.resolve.apply(null, _p); @@ -42,7 +42,7 @@ test(function resolve() { }); }); -test(function resolveWin32() { +test("resolveWin32", function () { windowsTests.forEach(function (p) { const _p = p[0] as string[]; const actual = path.win32.resolve.apply(null, _p); |