Skip to content

Commit

Permalink
chore(coverage): update coverage to 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
tunnckoCore committed Oct 16, 2016
1 parent 3df731c commit 911c9cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -13,7 +13,7 @@
"test": "npm run coverage",
"posttest": "npm run lint:coverage",
"coverage": "nyc node test.js",
"lint:coverage": "nyc check-coverage --lines 100 --branches 90 --statements 100 --functions 100",
"lint:coverage": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
Expand Down
2 changes: 1 addition & 1 deletion test.js
Expand Up @@ -71,7 +71,7 @@ test('should exposed instance create `.foobar` method from a plugin', function (
test('should push all filepaths to stream', function (done) {
var files = []
var app = new Ctor()
app.createReaddirStream(__dirname)
app.createReaddirStream(new Buffer(__dirname))
.on('data', function (file) {
files.push(file.basename)
})
Expand Down

0 comments on commit 911c9cc

Please sign in to comment.