Skip to content
Snippets Groups Projects
Commit 273ce9ff authored by Moritz Stückler's avatar Moritz Stückler :cowboy:
Browse files

fix: remove app test file

parent 56ca8fda
No related branches found
No related tags found
No related merge requests found
import * as React from 'react';
import { render } from '@testing-library/react';
import { expect } from 'chai';
import App from './App';
describe('<App>', () => {
it('renders learn react link', () => {
const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
expect(document.body.contains(linkElement));
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment