##// END OF EJS Templates
ts code cleanup, linting
ts code cleanup, linting

File last commit:

r39:ed82314aa5c8 di-typescript
r39:ed82314aa5c8 di-typescript
Show More
dummy.ts
13 lines | 328 B | video/mp2t | TypeScriptLexer
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);
});