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.
18 lines
528 B
18 lines
528 B
7 years ago
|
import actions from 'content/actions';
|
||
|
import addonReducer from 'content/reducers/addon';
|
||
|
|
||
|
describe("addon reducer", () => {
|
||
|
it('return the initial state', () => {
|
||
|
let state = addonReducer(undefined, {});
|
||
|
expect(state).to.have.property('enabled', true);
|
||
|
});
|
||
|
|
||
6 years ago
|
it('return next state for ADDON_SET_ENABLED', () => {
|
||
|
let action = { type: actions.ADDON_SET_ENABLED, enabled: true };
|
||
7 years ago
|
let prev = { enabled: false };
|
||
|
let state = addonReducer(prev, action);
|
||
|
|
||
|
expect(state.enabled).is.equal(true);
|
||
|
});
|
||
|
});
|