UNPKG

@bulmil/core

Version:

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

23 lines (22 loc) 466 B
/*! * 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> `); });