0.2.4 • Published 9 years ago

quick-test v0.2.4

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago
const QuickTest = require("QuickTest")

QuickTest({
  name: "foobar",
  timeout: 4000
},
  t => t.equal("hubba", "hubba", "$1 expected $2 but got $3"),
  function(t) { t.equal(123, 123) },
  function(t) { t.equal(true, true) },
  function(t) { t.equal(false, false) },

  function(t) {
    t.expect(1)

    setTimeout(function() {
      t.all_equal([null, "foo"], [null, "foo"])
    }, 1000)
  }
)
0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago