remove unused actions and fix test
This commit is contained in:
parent
e3409b3aae
commit
fe8a928317
5 changed files with 10 additions and 61 deletions
|
@ -1,19 +0,0 @@
|
|||
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);
|
||||
});
|
||||
});
|
||||
});
|
Reference in a new issue