Name: js-handler/node_modules/nodeunit/node_modules/tap/test/simple-harness-test.js 
1:
var tap = require("../")
2:
  , test = tap.test
3:
 
4:
test("trivial success", function (t) {
5:
  t.ok(true, "it works")
6:
  t.end()
7:
})
8:
 
9:
test("two tests", function (t) {
10:
  t.equal(255, 0xFF, "math should work")
11:
  t.notOk(false, "false should not be ok")
12:
  t.end()
13:
})