Added and tested ErrorText

This commit is contained in:
Simon 2024-07-08 17:42:59 -04:00
parent 0e2816f57e
commit 68a80d403c
3 changed files with 26 additions and 1 deletions

View File

@ -0,0 +1,17 @@
import {
describe,
expect,
test
} from 'vitest';
import { render } from '@testing-library/react'
import {
ErrorText
} from './ErrorText'
describe('ErrorText', () => {
test('it renders with the text', () => {
const { queryByTestId } = render(<ErrorText data-testid="test-id">An Error has occured!</ErrorText>)
expect(queryByTestId('test-id')?.textContent).toEqual('An Error has occured!')
})
})

View File

@ -0,0 +1,7 @@
import { Typography, TypographyProps, } from "@mui/material";
export const ErrorText: React.FunctionComponent<TypographyProps> = ({ ...props }) => {
return (
<Typography color="error" {...props} />
)
}

View File

@ -1 +1,2 @@
export * from './PasswordField/PasswordField';
export * from './PasswordField/PasswordField';
export * from './ErrorText/ErrorText';