mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-08 20:25:26 +03:00
24 lines
604 B
JavaScript
24 lines
604 B
JavaScript
import { h } from 'preact';
|
|
import * as WS from '../ws';
|
|
import { ApiProvider, useApiHost } from '..';
|
|
import { render, screen } from 'testing-library';
|
|
|
|
describe('useApiHost', () => {
|
|
beforeEach(() => {
|
|
vi.spyOn(WS, 'WsProvider').mockImplementation(({ children }) => children);
|
|
});
|
|
|
|
test('is set from the baseUrl', async () => {
|
|
function Test() {
|
|
const apiHost = useApiHost();
|
|
return <div>{apiHost}</div>;
|
|
}
|
|
render(
|
|
<ApiProvider>
|
|
<Test />
|
|
</ApiProvider>
|
|
);
|
|
expect(screen.queryByText('http://localhost:3000/')).toBeInTheDocument();
|
|
});
|
|
});
|