mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 11:11:06 +08:00
23 lines
703 B
JavaScript
23 lines
703 B
JavaScript
import React from 'react';
|
|
import { render, fireEvent } from '@testing-library/react';
|
|
import { withText as WithText, withCounter as WithCounter } from './button.stories';
|
|
|
|
const mockAction = jest.fn();
|
|
jest.mock('@storybook/addon-actions', () => ({
|
|
action: () => mockAction,
|
|
}));
|
|
|
|
describe('module story embedding', () => {
|
|
it('should test actions', () => {
|
|
const comp = render(<WithText />);
|
|
fireEvent.click(comp.getByText('Hello Button'));
|
|
expect(mockAction).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should test story state', () => {
|
|
const comp = render(<WithCounter />);
|
|
fireEvent.click(comp.getByText('Testing: 0'));
|
|
expect(comp.getByText('Testing: 1')).toBeTruthy();
|
|
});
|
|
});
|