mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-25 09:35:19 +00:00
* [Example] Get tests passing on ReduxExample and NavigationPlayground * [CI] Use more vague versioning so we're always up to date * [CI] Test that the example apps run without error * [CI] Install the current local version of react-nav before testing * Fix tabs => spaces in ReduxExample/package.json * Remove LinkingExample entirely It's now part of NavigationPlayground.
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
import React from 'react';
|
|
import 'react-native';
|
|
|
|
// Note: test renderer must be required after react-native.
|
|
import renderer from 'react-test-renderer';
|
|
|
|
import App from '../index.js';
|
|
|
|
it('renders', () => {
|
|
renderer.create(<App />);
|
|
});
|