dummy.ts
10 lines
| 226 B
| video/mp2t
|
TypeScriptLexer
cin
|
r0 | import * as tape from "tape"; | ||
tape("simple", t => { | ||||
t.pass("sync assert"); | ||||
setTimeout(() => { | ||||
t.pass("async assert"); | ||||
// end should be called after the last assertion | ||||
t.end(); | ||||
}, 100); | ||||
}); | ||||