##// END OF EJS Templates
fixed NlsBundle locale package loading...
fixed NlsBundle locale package loading corrected DjxFragment params and return value fixed regression in DjxWidgetBase attach points processing fixed empty RenditionBase startup

File last commit:

r102:c65ea2350b1a v1.3
r112:2ccfaae984e9 v1.4.4 default
Show More
declare-tests.ts
13 lines | 257 B | video/mp2t | TypeScriptLexer
/ djx / src / test / ts / declare-tests.ts
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"));