We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53aae53 commit 01b210eCopy full SHA for 01b210e
src/presence/__tests__/presenceReducer-test.js
@@ -11,18 +11,6 @@ import presenceReducer from '../presenceReducer';
11
const currentTimestamp = Date.now() / 1000;
12
13
describe('presenceReducer', () => {
14
- test('handles unknown action and no state by returning initial state', () => {
15
- const newState = presenceReducer(undefined, {});
16
- expect(newState).toBeDefined();
17
- });
18
-
19
- test('on unrecognized action, returns input state unchanged', () => {
20
- const prevState = deepFreeze({ hello: 'world' });
21
22
- const newState = presenceReducer(prevState, {});
23
- expect(newState).toBe(prevState);
24
25
26
describe('REGISTER_COMPLETE', () => {
27
test('when `presence` data is provided init state with it', () => {
28
const presenceData = {
0 commit comments