1
0
Fork 0

remove todo comment (#297)

pull/302/head
eric sciple 2020-01-10 12:09:48 -05:00 committed by GitHub
parent dd64d8c7c9
commit 058ad6937d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -134,7 +134,6 @@ describe('globber', () => {
const itemPaths = await glob(root, {followSymbolicLinks: true})
expect(itemPaths).toEqual([root, path.join(root, 'file')])
// todo: ? expect(itemPaths[2]).toBe(path.join(root, 'symDir'))
})
it('detects deep cycle starting from middle when followSymbolicLinks=true', async () => {
@ -244,7 +243,6 @@ describe('globber', () => {
path.join(root, 'symDir'),
path.join(root, 'symDir', 'file')
])
// todo: ? expect(itemPaths[2]).toBe(path.join(root, 'symDir', 'symDir'));
})
it('does not follow symlink when followSymbolicLinks=false', async () => {