fix plugin load

This commit is contained in:
Shin'ya Ueoka 2017-11-03 14:54:13 +09:00
parent e4ff3a78fb
commit 387524a407
4 changed files with 9 additions and 2 deletions

View file

@ -5,7 +5,7 @@ import settingReducer from 'content/reducers/setting';
describe("content setting reducer", () => {
it('return the initial state', () => {
let state = settingReducer(undefined, {});
expect(state).to.deep.equal({});
expect(state).to.deep.equal({ keymaps: {} });
});
it('return next state for SETTING_SET', () => {