Fix message reducer tests
This commit is contained in:
parent
b0b9904bc1
commit
3b33957161
@ -1,6 +1,7 @@
|
|||||||
import { Map, fromJS } from 'immutable';
|
import { Map, fromJS } from 'immutable';
|
||||||
import reducer, { broadcast } from '../messages';
|
import reducer, { broadcast } from '../messages';
|
||||||
import * as actions from '../actions';
|
import * as actions from '../actions';
|
||||||
|
import appReducer from '../app';
|
||||||
|
|
||||||
describe('reducers/messages', () => {
|
describe('reducers/messages', () => {
|
||||||
it('adds the message on ADD_MESSAGE', () => {
|
it('adds the message on ADD_MESSAGE', () => {
|
||||||
@ -87,10 +88,7 @@ describe('reducers/messages', () => {
|
|||||||
|
|
||||||
it('adds messages to the correct tabs when broadcasting', () => {
|
it('adds messages to the correct tabs when broadcasting', () => {
|
||||||
let state = {
|
let state = {
|
||||||
environment: Map({
|
app: appReducer(undefined, { type: '' })
|
||||||
charWidth: 0,
|
|
||||||
wrapWidth: 0
|
|
||||||
})
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const thunk = broadcast('test', 'srv', ['#chan1', '#chan3']);
|
const thunk = broadcast('test', 'srv', ['#chan1', '#chan3']);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user