##// END OF EJS Templates
fixed format-compile bug while formatting strings with new line symbols....
fixed format-compile bug while formatting strings with new line symbols. added error and completion handlers to Observable ConsoleTraceWriter is now destroyable

File last commit:

r8:e1c664dbc684 default
r15:d5a3d3ab9fd7 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);
});