mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 07:01:27 +08:00
Aligning unit test to updated Button component textContent
This commit is contained in:
parent
b5bd22bc25
commit
06b0ac7fae
@ -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);
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user