##// END OF EJS Templates
the documentation on observables is added...
the documentation on observables is added more tests

File last commit:

r8:e1c664dbc684 default
r26:0b0a30e050ba propose observables
Show More
dummy.ts
12 lines | 333 B | video/mp2t | TypeScriptLexer
cin
added test samples and test runner
r7 import * as tape from 'tape';
cin
core/Uuid rewritten in typescript
r8 import * as uuid from '@implab/core/Uuid';
cin
minor changes
r6
cin
added test samples and test runner
r7 tape('simple', function(t){
t.pass("sync assert");
setTimeout(() => {
t.pass("async assert");
cin
core/Uuid rewritten in typescript
r8 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
minor changes
r6 });