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.
18 lines
653 B
18 lines
653 B
import { expect } from "chai"; |
|
import actions from 'content/actions'; |
|
import settingReducer from 'content/reducers/setting'; |
|
|
|
describe("content setting reducer", () => { |
|
it('return the initial state', () => { |
|
let state = settingReducer(undefined, {}); |
|
expect(state.keymaps).to.be.empty; |
|
}); |
|
|
|
it('return next state for SETTING_SET', () => { |
|
let newSettings = { red: 'apple', yellow: 'banana' }; |
|
let action = { type: actions.SETTING_SET, value: newSettings }; |
|
let state = settingReducer(undefined, action); |
|
expect(state).to.deep.equal(newSettings); |
|
expect(state).not.to.equal(newSettings); // assert deep copy |
|
}); |
|
});
|
|
|