Skip to content

Commit

Permalink
fix: bump fileset version (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukyth authored and bcoe committed Dec 19, 2016
1 parent 06196e5 commit 8750735
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -34,7 +34,7 @@
},
"dependencies": {
"async": "1.x",
"fileset": "0.2.x",
"fileset": "^2.0.2",
"istanbul-lib-coverage": "^1.0.0-alpha",
"istanbul-lib-hook": "^1.0.0-alpha",
"istanbul-lib-instrument": "^1.1.0-alpha",
Expand Down
2 changes: 1 addition & 1 deletion test/run-cover.test.js
Expand Up @@ -122,7 +122,7 @@ describe('run cover', function () {
assert.ok(coverageMap);
assert.ok(coverageMap[path.resolve(codeRoot, 'context.js')]);
assert.ok(coverageMap[path.resolve(codeRoot, 'foo.js')]);
assert.ok(coverageMap[path.resolve(codeRoot, 'node_modules', 'adder.js')]);
assert.ifError(coverageMap[path.resolve(codeRoot, 'node_modules', 'adder.js')]);
cb();
});
});
Expand Down
2 changes: 1 addition & 1 deletion test/run-instrument.test.js
Expand Up @@ -144,7 +144,7 @@ describe('run instrument', function () {
function (err) {
assert.ok(!err);
assert.ok(fs.existsSync(outFile('foo.js')));
assert.ok(fs.existsSync(outFile('node_modules/adder.js')));
assert.ok(!fs.existsSync(outFile('node_modules/adder.js')));
assert.ok(fs.existsSync(outFile('baseline.raw.json')));
cb();
});
Expand Down

0 comments on commit 8750735

Please sign in to comment.