Files
Arjan ZuidemaandJohn Ferlito adb2d24cd8 chore(example): Update react-native to 72.1 (#512)
fix(all): Fixed Native Arch codgen issue

* Updated react-native in  FarbricExample app

---------

Co-authored-by: John Ferlito <johnf@inodes.org>
2023-07-04 09:55:08 +02:00

18 lines
363 B
TypeScript

/**
* @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 />);
});