@corejam/core-components
Version:
Corejam - Core Components
14 lines (12 loc) • 416 B
text/typescript
import { newSpecPage } from "@stencil/core/testing";
import { UiBase } from "./ui-base";
describe("renders base styling in head", () => {
it("builds", async () => {
const page = await newSpecPage({
components: [UiBase],
html: `<corejam-ui-base></corejam-ui-base>`,
});
const styleTag = page.doc.querySelectorAll("head style#corejam-ui-base");
expect(styleTag).toBeDefined();
});
});