mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
* 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
9 lines
263 B
TypeScript
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);
|
|
});
|