storybook/docs/snippets/react/button-test.js.mdx
Arkadiusz Adamski e1444a3028
[docs] Fix single quote instead of backtick
# What I did
I replaced backticks by single quote.

# How to test
No backticks in the snippet.
2020-08-27 15:25:25 +02:00

15 lines
375 B
Plaintext

```js
// Button.test.js
import React from 'react';
import { render, screen } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import { Primary } from './Button.stories';
it('renders the button in the primary state', () => {
render(<Primary {...Primary.args} />);
expect(screen.getByRole('button')).toHaveTextContent('Primary');
});
```