storybook/docs/snippets/react/button-test.js.mdx
2021-02-23 00:26:03 +00:00

17 lines
421 B
Plaintext

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