mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-25 09:35:19 +00:00
* [ReduxExample] Delete android and ios dirs * [ReduxExample] Upgrade using create-react-native-app * [ReduxExample] Add postinstall script to clean up files Yarn copies in Yarn copies them when installing locally, causing lots of @proviesModule collisions. * [ReduxExample] Upgrade expo and other dependencies * [ReduxExample] Don't delete .git just in case
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
import React from 'react';
|
|
import App from './App';
|
|
|
|
import renderer from 'react-test-renderer';
|
|
|
|
it('renders without crashing', () => {
|
|
const rendered = renderer.create(<App />).toJSON();
|
|
expect(rendered).toBeTruthy();
|
|
});
|