mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-09-26 11:31:28 +08:00
12 lines
369 B
JavaScript
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();
|
|
});
|
|
}); |