##// END OF EJS Templates
Merge with v1.3
Merge with v1.3

File last commit:

r102:c65ea2350b1a v1.3
r104:15c829aa08a2 merge v1.3.0 default
Show More
declare-tests.ts
13 lines | 257 B | video/mp2t | TypeScriptLexer
/ djx / src / test / ts / declare-tests.ts
cin
`Subscribable` is made compatible with rxjs, added map, filter and scan...
r102 import * as t from "tap";
import { Baz } from "./mock/Baz";
t.comment("Declare tests");
const baz = new Baz();
const data: string[] = [];
baz.writeHello(data);
t.pass("Test complete");
// tslint:disable-next-line: no-console
t.comment(data.join("\n"));