chore: update dependencies

This commit is contained in:
Sebastian Velez
2023-01-11 09:03:05 -05:00
parent 34f179a8eb
commit 32432d470d
13 changed files with 41078 additions and 16343 deletions

View File

@@ -6,7 +6,7 @@ describe('Alert Component', () => {
it('should render with proper text on success type', () => {
const text = 'Test Text';
const { container } = render(<Alert text={text} type="success" />);
expect(screen.getByText(text)).toBeTruthy();
expect(screen.getByText(text)).toBeInTheDocument();
expect(container).toMatchInlineSnapshot(`
<div>
<div
@@ -20,7 +20,7 @@ describe('Alert Component', () => {
it('should render wtih proper text on danger type', () => {
const text = 'Test Text';
const { container } = render(<Alert text={text} type="danger" />);
expect(screen.getByText(text)).toBeTruthy();
expect(screen.getByText(text)).toBeInTheDocument();
expect(container).toMatchInlineSnapshot(`
<div>
<div