Skip to content

Commit

Permalink
fix: failing test due to incorrect test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
domw30 committed Feb 22, 2025
1 parent f163d9a commit d89b93d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/store/channels/saga.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ describe(receiveChannel, () => {
const { storeState } = await expectSaga(receiveChannel, {
id: 'channel-id',
unreadCount: { total: 3, highlight: 0 },
zid: null,
})
.withReducer(rootReducer)
.run();
Expand All @@ -119,7 +120,7 @@ describe(receiveChannel, () => {
...CHANNEL_DEFAULTS,
id: 'channel-id',
unreadCount: { total: 3, highlight: 0 },
zid: '',
zid: null,
});
});
});
Expand Down

0 comments on commit d89b93d

Please sign in to comment.