compound-ex4
Version:
Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)
17 lines (13 loc) • 318 B
JavaScript
// https://github.com/isaacs/node-tap/issues/23
var tap = require("../")
, test = tap.test
test("finishes in time", {timeout: 500}, function(t) {
setTimeout(function () {
t.end();
}, 300);
})
test("finishes in time too", {timeout: 500}, function(t) {
setTimeout(function () {
t.end();
}, 300);
})