2022-07-05 13:21:17 +03:00
|
|
|
import {render} from '@testing-library/react';
|
2022-07-04 16:27:40 +03:00
|
|
|
import App from './App';
|
2022-07-04 16:55:30 +03:00
|
|
|
import React from 'react';
|
2022-07-04 16:27:40 +03:00
|
|
|
|
2022-07-05 11:03:56 +03:00
|
|
|
test('renders Sodo Search app component', () => {
|
2022-07-06 13:32:36 +03:00
|
|
|
window.location.hash = '#/sodo-search';
|
2022-07-04 16:57:19 +03:00
|
|
|
render(<App />);
|
2022-07-05 13:21:17 +03:00
|
|
|
// const containerElement = screen.getElementsByClassName('gh-portal-popup-container');
|
|
|
|
const containerElement = document.querySelector('.gh-root-frame');
|
|
|
|
expect(containerElement).toBeInTheDocument();
|
2022-07-04 16:27:40 +03:00
|
|
|
});
|