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.
27 lines
757 B
27 lines
757 B
7 years ago
|
import { expect } from "chai";
|
||
|
import actions from 'content/actions';
|
||
|
import * as addonActions from 'content/actions/addon';
|
||
|
|
||
|
describe("addon actions", () => {
|
||
|
describe("enable", () => {
|
||
|
it('create ADDON_ENABLE action', () => {
|
||
|
let action = addonActions.enable();
|
||
|
expect(action.type).to.equal(actions.ADDON_ENABLE);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe("disable", () => {
|
||
|
it('create ADDON_DISABLE action', () => {
|
||
|
let action = addonActions.disable();
|
||
|
expect(action.type).to.equal(actions.ADDON_DISABLE);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe("toggle", () => {
|
||
|
it('create ADDON_TOGGLE_ENABLED action', () => {
|
||
|
let action = addonActions.toggleEnabled();
|
||
|
expect(action.type).to.equal(actions.ADDON_TOGGLE_ENABLED);
|
||
|
});
|
||
|
});
|
||
|
});
|