##// END OF EJS Templates
Initial commit, copied files related to .tsx scripts support.
Initial commit, copied files related to .tsx scripts support.

File last commit:

r0:8e944df97a68 default
r0:8e944df97a68 default
Show More
dummy.ts
10 lines | 226 B | video/mp2t | TypeScriptLexer
import * as tape from "tape";
tape("simple", t => {
t.pass("sync assert");
setTimeout(() => {
t.pass("async assert");
// end should be called after the last assertion
t.end();
}, 100);
});