diff options
author | Liam Murphy <43807659+Liamolucko@users.noreply.github.com> | 2020-12-01 01:34:36 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 09:34:36 -0500 |
commit | 7a4d0fc22b08f71f17d6efbdd89a28fc8fcb452f (patch) | |
tree | 656264b794dc09c4b2fc36380c9b4f63c8ca90b2 /std/fs/walk_test.ts | |
parent | acdfc71d0016384373105739c42f7f0eebd12e27 (diff) |
feat(std/fs): Re-enable `followSymlinks` on `walk()` (#8479)
Diffstat (limited to 'std/fs/walk_test.ts')
-rw-r--r-- | std/fs/walk_test.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/std/fs/walk_test.ts b/std/fs/walk_test.ts index c772f4912..eae21f7b1 100644 --- a/std/fs/walk_test.ts +++ b/std/fs/walk_test.ts @@ -252,12 +252,11 @@ testWalk( async function symlink(): Promise<void> { assertReady(6); const files = await walkArray("a"); - assertEquals(files.length, 2); + assertEquals(files.length, 3); assert(!files.includes("a/bb/z")); const arr = await walkArray("a", { followSymlinks: true }); - assertEquals(arr.length, 3); + assertEquals(arr.length, 5); assert(arr.some((f): boolean => f.endsWith("/b/z"))); }, - true, ); |