Remove all tests

Issue with `TextDecoder is not defined` and we are not testing anything
at the moment.
This commit is contained in:
Franck Royer 2021-06-22 10:45:47 +10:00
parent 891897fe63
commit 0425821ea3
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 0 additions and 10 deletions

View File

@ -26,7 +26,6 @@
"start": "react-scripts start",
"build": "run-s build:*",
"build:react": "react-scripts build",
"test:unit": "react-scripts test",
"eject": "react-scripts eject",
"fix": "run-s fix:*",
"test": "run-s build test:*",

View File

@ -1,9 +0,0 @@
import React from 'react';
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();
});