Skip to content

Commit

Permalink
fix(s): qsu
Browse files Browse the repository at this point in the history
  • Loading branch information
Clm-Roig committed Mar 15, 2022
1 parent d414db2 commit f254ab8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/trackers/trackersSlice.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ describe('counter reducer', () => {
const initialState: TrackersState = {
error: {},
status: SliceStatus.idle,
trackers: []
trackers: undefined
};
it('should handle initial state', () => {
expect(trackersReducer(undefined, { type: 'unknown' })).toEqual({
error: {},
status: SliceStatus.idle,
trackers: [],
trackers: undefined,
});
});

Expand Down

0 comments on commit f254ab8

Please sign in to comment.