Skip to content

Commit

Permalink
fix timeout in file-utils.spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Dec 14, 2017
1 parent 9b0b8cb commit 64c2bfc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/node-unit/file-utils.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ describe('file utils', function () {
var tmpFile = path.join.bind(path, tmpDir);
var symlinkSupported = false;

beforeEach(function () {
this.timeout(2000);
});

(function testSymlinkSupport () {
makeTempDir();

Expand All @@ -32,6 +28,7 @@ describe('file utils', function () {
}());

beforeEach(function () {
this.timeout(2000);
makeTempDir();

fs.writeFileSync(tmpFile('mocha-utils.js'), 'yippy skippy ying yang yow');
Expand Down

0 comments on commit 64c2bfc

Please sign in to comment.