This commit is contained in:
Jan Prochazka
2019-12-26 20:08:51 +01:00
parent c203758fd8
commit 63dc04027d
27 changed files with 2473 additions and 1110 deletions

9
web/src/App.test.js Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});