aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions/addon.test.js
blob: 5f96372f46aa57f1cc67280f4f44711810dec0b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
    });
  });
});