Harrison Deng
ba566040b1
Started improved client code structure. Implemented session based authentication serverside. Implemented user, match, and sport database models serverside. Implemented Controllers for variety of C and R operations of CRUD.
9 lines
246 B
JavaScript
9 lines
246 B
JavaScript
import { render, screen } from '@testing-library/react';
|
|
import App from './App';
|
|
|
|
test('renders learn react link', () => {
|
|
render(<App />);
|
|
const linkElement = screen.getByText(/learn react/i);
|
|
expect(linkElement).toBeInTheDocument();
|
|
});
|