storybook/docs/snippets/react/button-test.js.mdx
2020-10-07 12:23:34 +08: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');
});
```