App.test.tsx 363 B

1234567891011121314151617
  1. /**
  2. * @format
  3. */
  4. import 'react-native';
  5. import React from 'react';
  6. import App from '../App';
  7. // Note: import explicitly to use the types shiped with jest.
  8. import {it} from '@jest/globals';
  9. // Note: test renderer must be required after react-native.
  10. import renderer from 'react-test-renderer';
  11. it('renders correctly', () => {
  12. renderer.create(<App />);
  13. });