diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-07 22:05:22 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-08 11:44:37 +0900 |
commit | efa1cb396733ac0bedb7c1e86fd1974fbc801135 (patch) | |
tree | 0653da5117cb10748275acb217758fafd7cd8e4a /test/content/actions/addon.test.js | |
parent | cf0dcf25226611590d76d263b5a4acdc89510d09 (diff) |
Use official redux on content
Diffstat (limited to 'test/content/actions/addon.test.js')
-rw-r--r-- | test/content/actions/addon.test.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/content/actions/addon.test.js b/test/content/actions/addon.test.js deleted file mode 100644 index 5f96372..0000000 --- a/test/content/actions/addon.test.js +++ /dev/null @@ -1,25 +0,0 @@ -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); - }); - }); -}); |