Added unit test for example component

This commit is contained in:
Gavin King 2018-06-24 23:07:48 +02:00
parent 63b568f8f9
commit e84768b2fd

View File

@ -0,0 +1,23 @@
import { document } from 'global';
import Button from './Button.svelte';
let target;
let component;
describe('Button Component', () => {
beforeEach(() => {
target = document.createElement('div');
component = new Button({ target });
});
it('should render `text` property', () => {
const text = 'Hello world';
component.set({ text });
const componentText = target.firstChild.textContent.trim();
expect(componentText).toEqual(text);
});
});