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.
14 lines
464 B
14 lines
464 B
7 years ago
|
import { expect } from "chai";
|
||
|
import actions from 'content/actions';
|
||
|
import * as settingActions from 'content/actions/setting';
|
||
|
|
||
|
describe("setting actions", () => {
|
||
|
describe("set", () => {
|
||
|
it('create SETTING_SET action', () => {
|
||
|
let action = settingActions.set({ red: 'apple', yellow: 'banana' });
|
||
|
expect(action.type).to.equal(actions.SETTING_SET);
|
||
|
expect(action.value).to.deep.equal({ red: 'apple', yellow: 'banana' });
|
||
|
});
|
||
|
});
|
||
|
});
|