Skip to content

Commit

Permalink
Merge pull request #398 from jprichardson/windows-timeout
Browse files Browse the repository at this point in the history
Don't override move test timeout
  • Loading branch information
RyanZim authored Mar 27, 2017
2 parents ed5dc63 + afab94b commit b549b04
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions lib/move-sync/__tests__/move-sync.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,6 @@ describe('moveSync()', () => {
})

it('should overwrite the destination directory if overwrite = true', function (done) {
// Tests fail on appveyor/Windows due to
// https://github.com/isaacs/node-graceful-fs/issues/98.
// Workaround by increasing the timeout by a minute (because
// graceful times out after a minute).
this.timeout(90000)

// Create src
const src = path.join(TEST_DIR, 'src')
fse.ensureDirSync(src)
Expand Down
6 changes: 0 additions & 6 deletions lib/move/__tests__/move.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,6 @@ describe('move', () => {
})

it('should overwrite the destination directory if overwrite = true', function (done) {
// Tests fail on appveyor/Windows due to
// https://github.com/isaacs/node-graceful-fs/issues/98.
// Workaround by increasing the timeout by a minute (because
// graceful times out after a minute).
this.timeout(90000)

// Create src
const src = path.join(TEST_DIR, 'src')
fse.ensureDirSync(src)
Expand Down

0 comments on commit b549b04

Please sign in to comment.