##// END OF EJS Templates
added TraceSource tests
added TraceSource tests

File last commit:

r8:e1c664dbc684 default
r11:b9900835d201 propose cancellat...
Show More
dummy.ts
12 lines | 333 B | video/mp2t | TypeScriptLexer
import * as tape from 'tape';
import * as uuid from '@implab/core/Uuid';
tape('simple', function(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);
});