This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/test/content/reducers/addon.test.js
2018-07-08 11:44:37 +09:00

17 lines
528 B
JavaScript

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);
});
it('return next state for ADDON_SET_ENABLED', () => {
let action = { type: actions.ADDON_SET_ENABLED, enabled: true };
let prev = { enabled: false };
let state = addonReducer(prev, action);
expect(state.enabled).is.equal(true);
});
});