mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
17 lines
471 B
Plaintext
17 lines
471 B
Plaintext
```js
|
|
// Button.test.js
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
import { render } from '@testing-library/svelte';
|
|
|
|
import { Primary } from './Button.stories'; //👈 Our story imported here
|
|
|
|
test('renders the button in the primary state', () => {
|
|
//👇 Story's args used with our test
|
|
const { container } = render(Button, {
|
|
props: Primary.args,
|
|
});
|
|
expect(container.firstChild.children[0].classList.contains('storybook-button--primary')).toBe(true);
|
|
});
|
|
``` |