2023-04-12 23:41:28 -06:00
|
|
|
/**
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
import 'react-native';
|
|
|
|
import React from 'react';
|
|
|
|
import App from '../App';
|
|
|
|
|
2024-06-30 09:20:28 -06:00
|
|
|
// Note: import explicitly to use the types shipped with jest.
|
|
|
|
import {it} from '@jest/globals';
|
|
|
|
|
2023-04-12 23:41:28 -06:00
|
|
|
// Note: test renderer must be required after react-native.
|
|
|
|
import renderer from 'react-test-renderer';
|
|
|
|
|
|
|
|
it('renders correctly', () => {
|
|
|
|
renderer.create(<App />);
|
|
|
|
});
|