mirror of
https://github.com/nostr-connect/connect.git
synced 2025-12-17 05:04:20 +01:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import * as React from 'react';
|
|
import * as ReactDOM from 'react-dom';
|
|
import { Thing } from '../src';
|
|
|
|
describe('it', () => {
|
|
it('renders without crashing', () => {
|
|
const div = document.createElement('div');
|
|
ReactDOM.render(<Thing />, div);
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
});
|
|
});
|