mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-27 10:28:02 +00:00
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import * as React from 'react';
|
|
import * as ReactDOM from 'react-dom';
|
|
import App from './App';
|
|
|
|
it('renders without crashing', () => {
|
|
const div = document.createElement('div');
|
|
ReactDOM.render(<App />, div);
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
});
|