chore: remove unused const
This commit is contained in:
parent
ff0925cc96
commit
ef0d2bf195
|
@ -33,7 +33,6 @@ describe('test selectedUsers reducer', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return loading after call action', async () => {
|
it('should return loading after call action', async () => {
|
||||||
const user = { _id: 'user.id', name: 'user.username', fname: 'user.name' };
|
|
||||||
mockedStore.dispatch(setLoading(true));
|
mockedStore.dispatch(setLoading(true));
|
||||||
const state = mockedStore.getState().selectedUsers.loading;
|
const state = mockedStore.getState().selectedUsers.loading;
|
||||||
expect(state).toEqual(true);
|
expect(state).toEqual(true);
|
||||||
|
|
Loading…
Reference in New Issue