UNPKG

@bulmil/core

Version:

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

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