feature(database-connection): Restructure frontend

This commit is contained in:
2021-01-11 08:11:02 +01:00
parent ceea2a7616
commit ff1c56c791
17 changed files with 2057 additions and 1666 deletions

View 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();
});
});