import { Category } from "web-atoms-core/dist/unit/Category"; import { Test } from "web-atoms-core/dist/unit/Test"; import { TestItem } from "web-atoms-core/dist/unit/TestItem"; import { CoreHtmlFile } from "./CoreHtmlFile"; @Category("Core Html") export class TestCase extends TestItem { @Test public test(): void { const chf = new CoreHtmlFile("stripe-control", { imports: { atom: "web-atoms-core/bin/controls/" } }); chf.compileContent(`
`); // tslint:disable-next-line:no-console // console.log(chf.nodes[0].generated); } }