##// END OF EJS Templates
Added tag v1.4.3 for changeset d6fe22864d82
Added tag v1.4.3 for changeset d6fe22864d82

File last commit:

r89:441fae622bca ts-plugin
r168:10daa12056a8 v1.4.4 default
Show More
dummy.ts
13 lines | 318 B | video/mp2t | TypeScriptLexer
import * as tape from "tape";
import { Uuid } from "../Uuid";
tape("simple", t => {
t.pass("sync assert");
setTimeout(() => {
t.pass("async assert");
t.comment(Uuid());
t.ok(Uuid() !== Uuid());
// end should be called after the last assertion
t.end();
}, 100);
});