mirror of
https://github.com/zoriya/react-native-background-downloader.git
synced 2025-12-06 06:56:10 +00:00
13 lines
348 B
TypeScript
13 lines
348 B
TypeScript
import React from 'react';
|
|
import 'react-native';
|
|
import App from '../src/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 />);
|
|
}); |