@brightlayer-ui/react-native-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
25 lines (24 loc) • 1.02 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { cleanup, fireEvent, render, screen } from '@testing-library/react-native';
import { ErrorMessageBox } from '../../../components/index.js';
import { Provider as PaperProvider } from 'react-native-paper';
describe('ErrorMessageBox Test', () => {
const onClose = jest.fn();
const defaultProps = {
title: 'Error Title',
errorMessage: 'Error Message',
onClose,
};
const renderer = (props = defaultProps) => render(_jsx(PaperProvider, { children: _jsx(ErrorMessageBox, { ...props }) }));
afterEach(cleanup);
it('renders correctly', () => {
renderer();
expect(render).toBeTruthy();
});
it('should call onDismiss prop, when button is pressed', () => {
renderer();
expect(screen.getByTestId('blui-error-message-box-close-icon')).toBeOnTheScreen();
fireEvent.press(screen.getByTestId('blui-error-message-box-close-icon'));
expect(onClose).toHaveBeenCalled();
});
});