We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 369e165 commit aa188b7Copy full SHA for aa188b7
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "tinytap",
3
- "version": "0.2.0",
+ "version": "0.2.1",
4
"description": "Tiny TAP tester and test runner.",
5
"main": "./src/tester.js",
6
"bin": {
src/tester.js
@@ -62,11 +62,11 @@ var t = Object.keys(assert).map(function (k) {
62
}, {})
63
64
t.pass = function (m) {
65
- assert(true, m)
+ t.ok(true, m)
66
}
67
68
t.fail = function (m) {
69
- assert(false, m)
+ t.ok(false, m)
70
71
72
t.comment = function (m) {
0 commit comments