Aligning unit test to updated Button component textContent

This commit is contained in:
Gavin King 2018-07-25 12:13:06 +02:00
parent b5bd22bc25
commit 06b0ac7fae

View File

@ -13,11 +13,12 @@ describe('Button Component', () => {
it('should render `text` property', () => {
const text = 'Hello world';
const expected = `Round corners\n ${text}`;
component.set({ text });
const componentText = target.firstChild.textContent.trim();
expect(componentText).toEqual(text);
expect(componentText).toEqual(expected);
});
});