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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

19 lines
516 B

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);
});
});
});