Ghost/ghost/sodo-search/src/App.test.js

12 lines
432 B
JavaScript
Raw Normal View History

2022-07-05 13:21:17 +03:00
import {render} from '@testing-library/react';
import App from './App';
2022-07-04 16:55:30 +03:00
import React from 'react';
test('renders Sodo Search app component', () => {
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();
});