Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackHole1 committed Mar 28, 2024
1 parent 5899d16 commit 95e3217
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/filesystem-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ const Filesystem = require('../lib/filesystem')

describe('filesystem', function () {
it('should does not throw error when src path include symbol link', async () => {
const src = path.join(__dirname, 'input', 'srcpath-include-symlink', 'var', 'app')
const src = path.join(__dirname, 'input', 'srcpath-include-symlink', 'var')
const filesystem = new Filesystem(src)
assert.doesNotThrow(() => {
filesystem.insertLink(path.join(src, 'symbol', 'link.txt'))
filesystem.insertLink(path.join(src, 'link', 'file.txt'))
})
})
})

This file was deleted.

0 comments on commit 95e3217

Please sign in to comment.