Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
fix subtests by adding t.plan() (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers authored Feb 10, 2019
1 parent f73ec93 commit ca22ec9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"rimraf": "^2.6.1",
"slump": "^3.0.0",
"standard": "^12.0.0",
"tape": "^4.5.1",
"tape": "^4.10.0",
"uuid": "^3.2.1",
"verify-travis-appveyor": "^3.0.0"
},
Expand Down
3 changes: 2 additions & 1 deletion test/compression-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ var cycle = function (db, compression, t, callback) {
})
}

test('Compression', function (t) {
test('compression', function (t) {
t.plan(4)
t.test('set up', common.setUp)

t.test('test data is compressed by default (db.put())', function (t) {
Expand Down

0 comments on commit ca22ec9

Please sign in to comment.