mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:11:26 +08:00
Added unit test for example component
This commit is contained in:
parent
63b568f8f9
commit
e84768b2fd
23
examples/svelte-kitchen-sink/src/components/Button.test.js
Normal file
23
examples/svelte-kitchen-sink/src/components/Button.test.js
Normal 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);
|
||||
});
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user