devbook_ts/src/App.test.tsx
Ruidy ef6d97f2fc
Create and style Landing page (#2)
* readme

* specify landing must show app name

* clean default project

* write landing page layout

* add static assets for styling

* add Landing page unit test
install fontawesome
2020-05-12 11:09:51 +02:00

9 lines
263 B
TypeScript

import React from 'react';
import {render} from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
const {getAllByText} = render(<App />);
const title = getAllByText('DevBook');
expect(title.length).toEqual(2);
});