test: Fixes act errors in ErrorMessage tests (#21414)

This commit is contained in:
Michael S. Molina
2022-09-12 12:01:55 -03:00
committed by GitHub
parent 8539d4cb67
commit 9c285dafb4
6 changed files with 42 additions and 0 deletions

View File

@@ -23,6 +23,13 @@ import { render, screen } from 'spec/helpers/testing-library';
import TimeoutErrorMessage from './TimeoutErrorMessage';
import { ErrorLevel, ErrorSource, ErrorTypeEnum } from './types';
jest.mock(
'src/components/Icons/Icon',
() =>
({ fileName }: { fileName: string }) =>
<span role="img" aria-label={fileName.replace('_', '-')} />,
);
const mockedProps = {
error: {
error_type: ErrorTypeEnum.FRONTEND_TIMEOUT_ERROR,