blob: 6c599ae5013e5648a432faefd118a3c6ac78153e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import * as operations from "../../../../src/shared/operations";
import { expect } from "chai";
import FindOperatorFactoryChain from "../../../../src/content/operators/impls/FindOperatorFactoryChain";
import MockFindMasterClient from "../../mock/MockFindMasterClient";
import FindNextOperator from "../../../../src/content/operators/impls/FindNextOperator";
import FindPrevOperator from "../../../../src/content/operators/impls/FindPrevOperator";
describe("FindOperatorFactoryChain", () => {
describe("#create", () => {
it("returns an operator", () => {
const sut = new FindOperatorFactoryChain(new MockFindMasterClient());
expect(sut.create({ type: operations.FIND_NEXT }, 0)).to.be.instanceOf(
FindNextOperator
);
expect(sut.create({ type: operations.FIND_PREV }, 0)).to.be.instanceOf(
FindPrevOperator
);
expect(sut.create({ type: operations.SCROLL_TOP }, 0)).to.be.null;
});
});
});
|