##// END OF EJS Templates
migrating tests to the new project structure
migrating tests to the new project structure

File last commit:

r89:441fae622bca ts-plugin
r89:441fae622bca ts-plugin
Show More
dummy.ts
13 lines | 318 B | video/mp2t | TypeScriptLexer
cin
migrating tests to the new project structure
r89 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);
});