mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
Update button-test.js.mdx
See https://github.com/storybookjs/storybook/issues/12079 We never shipped `renderStory` and this change got lost in the mix.
This commit is contained in:
parent
8e140a1815
commit
f43be2a334
@ -4,12 +4,11 @@
|
||||
import React from 'react';
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import '@testing-library/jest-dom/extend-expect';
|
||||
import { renderStory } from '@storybook/react/render';
|
||||
|
||||
import { Primary } from './Button.stories';
|
||||
|
||||
it('renders the button in the primary state’, () => {
|
||||
render(renderStory(Primary));
|
||||
render(<Primary {...Primary.args} />);
|
||||
expect(screen.getByRole('button')).toHaveTextContent(‘Primary’);
|
||||
});
|
||||
```
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user