import React = require('react'); import Action from '../../src/renderers/Action'; import * as renderer from 'react-test-renderer'; import {render, fireEvent, cleanup} from 'react-testing-library'; import '../../src/themes/default'; afterEach(cleanup); test('Renderers:Action MenuItem changes class when actived & disabled', () => { const component = renderer.create( ); let tree = component.toJSON(); expect(tree).toMatchSnapshot(); component.update( ); tree = component.toJSON(); expect(tree).toMatchSnapshot(); component.update( ); tree = component.toJSON(); expect(tree).toMatchSnapshot(); }); test('Renderers:Action MenuItem display icon', () => { const component = renderer.create( ); let tree = component.toJSON(); expect(tree).toMatchSnapshot(); component.update( ); tree = component.toJSON(); expect(tree).toMatchSnapshot(); }); test('Renderers:Action [actionType = "link"] show active class', () => { const isCurrentUrl = (link:string) => link === "b"; const component = renderer.create( ); let tree = component.toJSON(); expect(tree).toMatchSnapshot(); component.update( ); tree = component.toJSON(); expect(tree).toMatchSnapshot(); }); test('Renderers:Action custom activeClass', () => { const component = renderer.create( ); let tree = component.toJSON(); expect(tree).toMatchSnapshot(); component.update( ); tree = component.toJSON(); expect(tree).toMatchSnapshot(); }); test('Renderers:Action onAction called?', () => { const onAction = jest.fn(); const {getByText} = render( ); fireEvent.click(getByText(/123/)); expect(onAction).toHaveBeenCalled(); }); test('Renderers:Action disabled onAction called?', () => { const onAction = jest.fn(); const {getByText} = render( ); fireEvent.click(getByText(/123/)); expect(onAction).not.toHaveBeenCalled(); }); test('Renderers:Action onClick cancel onAction?', () => { const onAction = jest.fn(); const onClick = jest.fn(e => e.preventDefault()); const {getByText} = render( ); fireEvent.click(getByText(/123/)); expect(onClick).toHaveBeenCalled(); expect(onAction).not.toHaveBeenCalled(); });