storybook/examples/official-storybook/stories/demo/button-module-embed.test.js
2019-07-17 01:28:42 +08:00

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();
});
});