add find action and reducer
Esse commit está contido em:
pai
be37c42d28
commit
e1c70769ea
6 arquivos alterados com 124 adições e 0 exclusões
19
test/content/actions/find.test.js
Arquivo normal
19
test/content/actions/find.test.js
Arquivo normal
|
@ -0,0 +1,19 @@
|
|||
import { expect } from "chai";
|
||||
import actions from 'content/actions';
|
||||
import * as findActions from 'content/actions/find';
|
||||
|
||||
describe("find actions", () => {
|
||||
describe("show", () => {
|
||||
it('create FIND_SHOW action', () => {
|
||||
let action = findActions.show();
|
||||
expect(action.type).to.equal(actions.FIND_SHOW);
|
||||
});
|
||||
});
|
||||
|
||||
describe("hide", () => {
|
||||
it('create FIND_HIDE action', () => {
|
||||
let action = findActions.hide();
|
||||
expect(action.type).to.equal(actions.FIND_HIDE);
|
||||
});
|
||||
});
|
||||
});
|
Referência em uma nova issue