Files
frigate/web-old/src/__tests__/App.test.jsx
Blake Blackshear bdebb99b5a Use new UI (#8983)
* fixup build

* swap frontends
2024-01-31 12:56:11 +00:00

12 lines
369 B
JavaScript

import { h } from 'preact';
import App from '../app';
import { render, screen } from 'testing-library';
describe('App', () => {
// eslint-disable-next-line jest/no-disabled-tests
test.skip('loads the camera dashboard', async () => {
render(<App />);
await screen.findByText('Cameras');
expect(screen.queryByText('front')).toBeInTheDocument();
});
});