diff options
Diffstat (limited to 'test/content/operators/impls')
| -rw-r--r-- | test/content/operators/impls/FollowOperatorFactoryChain.test.ts | 9 | 
1 files changed, 3 insertions, 6 deletions
diff --git a/test/content/operators/impls/FollowOperatorFactoryChain.test.ts b/test/content/operators/impls/FollowOperatorFactoryChain.test.ts index 526a93c..91f734b 100644 --- a/test/content/operators/impls/FollowOperatorFactoryChain.test.ts +++ b/test/content/operators/impls/FollowOperatorFactoryChain.test.ts @@ -8,12 +8,9 @@ describe("FocusOperatorFactoryChain", () => {    describe("#create", () => {      it("returns an operator", () => {        const sut = new FocusOperatorFactoryChain(new MockFocusPresenter()); -      expect( -        sut.create( -          { type: operations.FOCUS_INPUT, newTab: false, background: false }, -          0 -        ) -      ).to.be.instanceOf(FocusOperator); +      expect(sut.create({ type: operations.FOCUS_INPUT }, 0)).to.be.instanceOf( +        FocusOperator +      );        expect(sut.create({ type: operations.SCROLL_TOP }, 0)).to.be.null;      });    });  | 
