summaryrefslogtreecommitdiffstats
path: root/__tests__/App.test.tsx
blob: d5d324444505ab77a1f69b3badfa0df4cb369b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * @format
 */

import 'react-native';
import React from 'react';
import App from '../src/App.tsx';

// Note: import explicitly to use the types shipped 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 />);
});