dot.dot.dot.exampol
This commit is contained in:
commit
a0bc2d79de
406 changed files with 34577 additions and 0 deletions
16
node_modules/tap/test/independent-timeouts.js
generated
vendored
Normal file
16
node_modules/tap/test/independent-timeouts.js
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
// 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);
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue