@bulmil/core
Version:

23 lines (22 loc) • 466 B
JavaScript
/*!
* Bulmil - MIT License
*/
import { newSpecPage } from "@stencil/core/testing";
import { Box } from "../box";
it('Should render properly', async () => {
const page = await newSpecPage({
components: [Box],
html: `
<bm-box>
<p>Hello, I'm in a box!</p>
</bm-box>
`,
});
expect(page.root).toEqualHtml(`
<bm-box>
<div class="box">
<p>Hello, I'm in a box!</p>
</div>
</bm-box>
`);
});