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 16:56:20 +03:00
|
|
|
window.location.hash = '#/search';
|
2022-07-07 12:09:53 +03:00
|
|
|
render(<App adminUrl="http://localhost" apiKey="69010382388f9de5869ad6e558" />);
|
2022-07-05 13:21:17 +03:00
|
|
|
// const containerElement = screen.getElementsByClassName('gh-portal-popup-container');
|
2023-03-17 11:25:39 +03:00
|
|
|
// eslint-disable-next-line testing-library/no-node-access
|
2022-07-05 13:21:17 +03:00
|
|
|
const containerElement = document.querySelector('.gh-root-frame');
|
|
|
|
expect(containerElement).toBeInTheDocument();
|
2022-07-04 16:27:40 +03:00
|
|
|
});
|