UNPKG

@bulmil/core

Version:

![bulmil](https://user-images.githubusercontent.com/2362138/65766959-c721a080-e16f-11e9-9fb9-45a5a2ad0391.jpg)

21 lines (20 loc) 511 B
/*! * Bulmil - MIT License */ import { newSpecPage } from "@stencil/core/testing"; import { Content } from "../content"; it('Should render properly', async () => { const page = await newSpecPage({ components: [Content], html: `<bm-content size="is-large"> <h2>Hello</h2> </bm-content>`, }); expect(page.root).toEqualHtml(` <bm-content size="is-large"> <div class="content is-large"> <h2>Hello</h2> </div> </bm-content> `); });