declare-tests.ts
13 lines
| 257 B
| video/mp2t
|
TypeScriptLexer
cin
|
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")); | ||||