From 59f7ef205df4750063c755a7b8834bfd7509da83 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sat, 21 Oct 2017 13:26:36 +0900 Subject: add addon actions --- test/content/actions/addon.test.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test/content/actions/addon.test.js (limited to 'test/content/actions/addon.test.js') diff --git a/test/content/actions/addon.test.js b/test/content/actions/addon.test.js new file mode 100644 index 0000000..7f244dc --- /dev/null +++ b/test/content/actions/addon.test.js @@ -0,0 +1,26 @@ +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); + }); + }); +}); -- cgit v1.2.3