Skip to content
Snippets Groups Projects

fix(submap): invalid pin position after submap is closed (MIN-290)

4 files
+ 23
9
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -6,6 +6,7 @@ import {
import { StoreType } from '@/redux/store';
import { initialMapDataFixture, openedMapsThreeSubmapsFixture } from '@/redux/map/map.fixtures';
import { act, render, screen, within } from '@testing-library/react';
import { MODELS_MOCK } from '@/redux/compartmentPathways/compartmentPathways.mock';
import { MODELS_DATA_MOCK_WITH_MAIN_MAP } from '@/redux/models/models.mock';
import { PluginsEventBus } from '@/services/pluginsManager/pluginsEventBus';
import { MapNavigation } from './MapNavigation.component';
@@ -104,9 +105,8 @@ describe('MapNavigation - component', () => {
expect(modelId).toBe(MAIN_MAP_ID);
});
it('should close map and open main map if closed currently selected map', async () => {
it('should close currently selected map map and open main map', async () => {
const { store } = renderComponent({
models: MODELS_DATA_MOCK_WITH_MAIN_MAP,
map: {
data: {
...initialMapDataFixture,
@@ -116,6 +116,11 @@ describe('MapNavigation - component', () => {
loading: 'succeeded',
error: { message: '', name: '' },
},
models: {
loading: 'succeeded',
error: { message: '', name: '' },
data: MODELS_MOCK,
},
});
const histamineMapButton = screen.getByRole('button', { name: 'Histamine signaling' });
Loading