-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(std/fs): Re-enable "followSymlinks" option in "walk()" API #8479
Conversation
@@ -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); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this one remain unchanged?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think includeDirs
was off by default back when this test was written, so now it includes "a"
itself as well.
followSymlinks
on walk()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - thanks @Liamolucko
Fixes #8076