mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:41:11 +08:00
17 lines
421 B
Plaintext
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');
|
|
});
|
|
``` |