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.
2 parents 2d44802 + 87f9bd5 commit d266150Copy full SHA for d266150
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "tinytap",
3
- "version": "v1.2.1",
+ "version": "v1.2.2",
4
"description": "Tiny TAP tester and test runner.",
5
"main": "./src/tester.js",
6
"bin": {
src/tester.js
@@ -64,11 +64,11 @@ var t = Object.keys(assert).map(function (k) {
64
}, {})
65
66
t.pass = function (m) {
67
- assert(true, m)
+ t.ok(true, m)
68
}
69
70
t.fail = function (m) {
71
- assert(false, m)
+ t.ok(false, m)
72
73
74
t.comment = function (m) {
0 commit comments