forked from cerc-io/laconic-wallet
* Disconnect pairing request when app is reset * Move files to respective folders * Add comments to describe flow * Add new line * remove request session context * Fix imports * Move hook to folder * Add undefined type * Move types to src * Move util functions to correct files * Remove typeroots from tsconfig --------- Co-authored-by: Adw8 <adwait@deepstacksoft.com>
18 lines
368 B
TypeScript
18 lines
368 B
TypeScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import 'react-native';
|
|
import React from 'react';
|
|
import App from '../src/App';
|
|
|
|
// Note: import explicitly to use the types shipped 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 />);
|
|
});
|