feat(fetch submaps): added query to fetch models(submaps) on app load
2 unresolved threads
Description
Added getModels query on loading the app + required reducer, and models to do so.
Merge request reports
Activity
Filter activity
requested review from @mateuszmiko and @AdrianOrlow
- src/redux/models/models.reducers.test.ts 0 → 100644
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', () => { changed this line in version 2 of the diff
- src/redux/models/models.reducers.test.ts 0 → 100644
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 () => { changed this line in version 2 of the diff
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
-
9c1865ae...0544a36b - 7 commits from branch
enabled an automatic merge when the pipeline for 64cac688 succeeds
mentioned in commit 62cac953
Please register or sign in to reply