You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
384 B
17 lines
384 B
8 years ago
|
import channelsReducer, {
|
||
|
SET_CHANNEL_FORM,
|
||
|
SET_CHANNEL,
|
||
|
GET_CHANNELS,
|
||
|
RECEIVE_CHANNELS,
|
||
|
OPENING_CHANNEL,
|
||
|
OPENING_SUCCESSFUL,
|
||
|
OPENING_FAILURE
|
||
|
} from '../../app/reducers/channels'
|
||
|
|
||
|
describe('reducers', () => {
|
||
|
describe('channelsReducer', () => {
|
||
|
it('should handle initial state', () => {
|
||
|
expect(channelsReducer(undefined, {})).toMatchSnapshot()
|
||
|
})
|
||
|
})
|
||
|
})
|