mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import App from './App';
|
||
|
|
||
|
it('renders without crashing', () => {
|
||
|
const div = document.createElement('div');
|
||
|
ReactDOM.render(<App />, div);
|
||
|
ReactDOM.unmountComponentAtNode(div);
|
||
|
});
|