initial project commit
This commit is contained in:
parent
d8efc7c19c
commit
bf2fab3aa1
63 changed files with 9861 additions and 1 deletions
17
__tests__/App.test.tsx
Normal file
17
__tests__/App.test.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* @format
|
||||
*/
|
||||
|
||||
import 'react-native';
|
||||
import React from 'react';
|
||||
import App from '../App';
|
||||
|
||||
// Note: import explicitly to use the types shiped with jest.
|
||||
import {it} from '@jest/globals';
|
||||
|
||||
// Note: test renderer must be required after react-native.
|
||||
import renderer from 'react-test-renderer';
|
||||
|
||||
it('renders correctly', () => {
|
||||
renderer.create(<App />);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue