feature(database-connection): Restructure frontend
This commit is contained in:
14
frontend/src/components/Footer/Footer.test.tsx
Normal file
14
frontend/src/components/Footer/Footer.test.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import '@testing-library/jest-dom/extend-expect';
|
||||
import Footer from './Footer';
|
||||
|
||||
describe('<Footer />', () => {
|
||||
test('it should mount', () => {
|
||||
render(<Footer />);
|
||||
|
||||
const footer = screen.getByTestId('Footer');
|
||||
|
||||
expect(footer).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user