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:
Tom Coleman 2020-08-18 16:47:06 +10:00 committed by GitHub
parent 8e140a1815
commit f43be2a334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
});
```
```