Skip to content
Snippets Groups Projects

feat(fetch submaps): added query to fetch models(submaps) on app load

Merged Tadeusz Miesiąc requested to merge feature/MIN-76-fetch-submaps-on-app-start into development
2 unresolved threads

Description

Added getModels query on loading the app + required reducer, and models to do so.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
6 createStoreInstanceUsingSliceReducer,
7 } from '@/utils/createStoreInstanceUsingSliceReducer';
8 import { apiPath } from '@/redux/apiPath';
9 import { getModels } from './models.thunks';
10 import modelsReducer from './models.slice';
11 import { ModelsState } from './models.types';
12
13 const mockedAxiosClient = mockNetworkResponse();
14
15 const INITIAL_STATE: ModelsState = {
16 data: [],
17 loading: 'idle',
18 error: { name: '', message: '' },
19 };
20
21 describe('drugs reducer', () => {
  • 41 expect(data).toEqual(modelsFixture);
    42 });
    43
    44 it('should update store after failed getModels query', async () => {
    45 mockedAxiosClient.onGet(apiPath.getModelsString()).reply(HttpStatusCode.NotFound, []);
    46
    47 const { type } = await store.dispatch(getModels());
    48 const { data, loading, error } = store.getState().models;
    49
    50 expect(type).toBe('project/getModels/rejected');
    51 expect(loading).toEqual('failed');
    52 expect(error).toEqual({ message: '', name: '' });
    53 expect(data).toEqual([]);
    54 });
    55
    56 it('should update store on loading getDrugs query', async () => {
  • mateuszmiko approved this merge request

    approved this merge request

  • Tadeusz Miesiąc added 9 commits

    added 9 commits

    • 9c1865ae...0544a36b - 7 commits from branch development
    • afeaaf1a - refactor(models reducer): fixed wrong naming of tests
    • 64cac688 - Merge branch 'development' into feature/MIN-76-fetch-submaps-on-app-start

    Compare with previous version

  • Tadeusz Miesiąc enabled an automatic merge when the pipeline for 64cac688 succeeds

    enabled an automatic merge when the pipeline for 64cac688 succeeds

  • Tadeusz Miesiąc mentioned in commit 62cac953

    mentioned in commit 62cac953

  • Please register or sign in to reply
    Loading