##// END OF EJS Templates
changed the project structure
changed the project structure

File last commit:

r39:ed82314aa5c8 di-typescript
r49:1a91da7b15f7 di-typescript
Show More
dummy.ts
13 lines | 328 B | video/mp2t | TypeScriptLexer
cin
ts code cleanup, linting
r39 import * as tape from "tape";
import { Uuid } from "@implab/core/Uuid";
cin
minor changes
r6
cin
ts code cleanup, linting
r39 tape("simple", t => {
cin
added test samples and test runner
r7 t.pass("sync assert");
setTimeout(() => {
t.pass("async assert");
cin
ts code cleanup, linting
r39 t.comment(Uuid());
t.ok(Uuid() !== Uuid());
cin
added test samples and test runner
r7 // end should be called after the last assertion
t.end();
}, 100);
cin
ts code cleanup, linting
r39 });