##// END OF EJS Templates
Added tag v1.2.16 for changeset 600f0201c4ba
Added tag v1.2.16 for changeset 600f0201c4ba

File last commit:

r50:7a4fac383b10 di-typescript
r72:3b62f13a3065 default
Show More
dummy.ts
13 lines | 328 B | video/mp2t | TypeScriptLexer
cin
tests moved under src/ folder...
r50 import * as tape from "tape";
import { Uuid } from "@implab/core/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);
});