aboutsummaryrefslogtreecommitdiff
path: root/test/content/reducers/addon.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-04-30 14:00:07 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-05-02 11:14:19 +0900
commitc60d0e7392fc708e961614d6b756a045de74f458 (patch)
tree0b9a5fce1879e38a92d5dbb2915779aee0ad22d6 /test/content/reducers/addon.test.ts
parent257162e5b6b4993e1dff0d705ffa6f0d809033eb (diff)
Rename .js/.jsx to .ts/.tsx
Diffstat (limited to 'test/content/reducers/addon.test.ts')
-rw-r--r--test/content/reducers/addon.test.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/content/reducers/addon.test.ts b/test/content/reducers/addon.test.ts
new file mode 100644
index 0000000..d4eb845
--- /dev/null
+++ b/test/content/reducers/addon.test.ts
@@ -0,0 +1,17 @@
+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);
+ });
+});