Skip to content
Snippets Groups Projects
Commit 0e350fc8 authored by Adrian Orłów's avatar Adrian Orłów
Browse files

fix(tests): add resize observer mock as a global

parent 53d809a0
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!36feat(map): add render components and tests
...@@ -6,13 +6,6 @@ import { render, screen } from '@testing-library/react'; ...@@ -6,13 +6,6 @@ import { render, screen } from '@testing-library/react';
import { MapViewer } from './MapViewer.component'; import { MapViewer } from './MapViewer.component';
import { MAP_VIEWER_ROLE } from './MapViewer.constants'; import { MAP_VIEWER_ROLE } from './MapViewer.constants';
// used by openlayers module
global.ResizeObserver = jest.fn().mockImplementation(() => ({
observe: jest.fn(),
unobserve: jest.fn(),
disconnect: jest.fn(),
}));
const renderComponent = (): { store: ToolkitStoreWithSingleSlice<MapState> } => { const renderComponent = (): { store: ToolkitStoreWithSingleSlice<MapState> } => {
const { Wrapper, store } = getReduxWrapperUsingSliceReducer('map', mapReducer); const { Wrapper, store } = getReduxWrapperUsingSliceReducer('map', mapReducer);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment