@bulmil/core
Version:

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