mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
16 lines
437 B
JavaScript
16 lines
437 B
JavaScript
import { render, fireEvent } from 'react-testing-library';
|
|
import { withText } from './button.stories';
|
|
|
|
const mockAction = jest.fn();
|
|
jest.mock('@storybook/addon-actions', () => ({
|
|
action: () => mockAction,
|
|
}));
|
|
|
|
describe('button interactivity', () => {
|
|
it('should handle clicks', () => {
|
|
const comp = render(withText());
|
|
fireEvent.click(comp.getByText('Hello Button'));
|
|
expect(mockAction).toHaveBeenCalled();
|
|
});
|
|
});
|