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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
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);
|
|
|
|
});
|
|
|
|
});
|