A fork of https://github.com/ueokande/vim-vixen
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.
36 lines
1.0 KiB
36 lines
1.0 KiB
import { expect } from "chai"; |
|
import actions from 'background/actions'; |
|
import settingReducer from 'background/reducers/setting'; |
|
|
|
describe("setting reducer", () => { |
|
it('return the initial state', () => { |
|
let state = settingReducer(undefined, {}); |
|
expect(state).to.have.deep.property('value', {}); |
|
}); |
|
|
|
it('return next state for SETTING_SET_SETTINGS', () => { |
|
let action = { |
|
type: actions.SETTING_SET_SETTINGS, |
|
value: { key: 123 }, |
|
}; |
|
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); |
|
|
|
expect(state.value.properties).to.have.property('smoothscroll', true); |
|
expect(state.value.properties).to.have.property('encoding', 'utf-8'); |
|
}); |
|
});
|
|
|