add set property action in background

This commit is contained in:
Shin'ya Ueoka 2018-01-10 21:34:40 +09:00
parent 6083e70ea0
commit 22c34a0a6f
4 changed files with 36 additions and 2 deletions

View file

@ -16,4 +16,22 @@ describe("setting reducer", () => {
let state = settingReducer(undefined, action);
expect(state).to.have.deep.property('value', { key: 123 });
});
it('return next state for SETTING_SET_PROPERTY', () => {
let state = {
value: {
properties: { smoothscroll: true }
}
}
let action = {
type: actions.SETTING_SET_PROPERTY,
name: 'encoding',
value: 'utf-8',
};
state = settingReducer(state, action);
console.log(state);
expect(state.value.properties).to.have.property('smoothscroll', true);
expect(state.value.properties).to.have.property('encoding', 'utf-8');
});
});