mirror of
https://github.com/minibits-cash/minibits_wallet.git
synced 2026-08-10 16:43:19 +00:00
14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import React from 'react';
|
|
import ReactTestRenderer from 'react-test-renderer';
|
|
import App from '../src/App';
|
|
|
|
test('renders correctly', async () => {
|
|
await ReactTestRenderer.act(() => {
|
|
ReactTestRenderer.create(<App />);
|
|
});
|
|
});
|