##// END OF EJS Templates
Merged in propose cancellations (pull request #1)...
Merged in propose cancellations (pull request #1) Propose cancellations Approved-by: m407 <bitbucket@m407.ru>

File last commit:

r8:e1c664dbc684 default
r21:dd8f8dfcd934 merge default
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 });