Skip to content

Commit

Permalink
tools: update tap + mock-fs. Fix broken test
Browse files Browse the repository at this point in the history
The test suite is currently failing on anything higher than v4

Updating mock-fs fixes this. As tap was quite out of date I have
updated that as well.

After updating the dependencies a test began failing due to
`test.end()` being called more than once. This is fixed
  • Loading branch information
Myles Borins committed Feb 6, 2016
1 parent d4eff0f commit b8629ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -19,8 +19,8 @@
"minimist": "0.0.8"
},
"devDependencies": {
"tap": "1",
"mock-fs": "2 >=2.7.0"
"mock-fs": "^3.7.0",
"tap": "^5.4.2"
},
"bin": "bin/cmd.js",
"license": "MIT"
Expand Down
1 change: 0 additions & 1 deletion test/perm.js
Expand Up @@ -28,5 +28,4 @@ test('async root perm', function (t) {
if (err) t.fail(err);
t.end();
});
t.end();
});

0 comments on commit b8629ff

Please sign in to comment.