diff --git a/src/controller/action.test.ts b/src/controller/action.test.ts index c2b92922..4448a3ab 100644 --- a/src/controller/action.test.ts +++ b/src/controller/action.test.ts @@ -2,6 +2,8 @@ // // SPDX-License-Identifier: MIT +/* eslint-disable @typescript-eslint/unbound-method */ + import { createMock } from "ts-auto-mock"; import { Engine } from "../engine"; import { FocusUpperWindow } from "./action"; @@ -18,7 +20,6 @@ describe("action", () => { action.execute(); // Assert - // eslint-disable-next-line @typescript-eslint/unbound-method expect(fakeEngine.focusDir).toBeCalledWith("up"); }); }); diff --git a/src/engine/index.test.ts b/src/engine/index.test.ts index 7408ebd5..5f5383bc 100644 --- a/src/engine/index.test.ts +++ b/src/engine/index.test.ts @@ -2,6 +2,8 @@ // // SPDX-License-Identifier: MIT +/* eslint-disable @typescript-eslint/unbound-method */ + import { createMock } from "ts-auto-mock"; import { TilingEngine } from "."; @@ -33,7 +35,6 @@ describe("arrange", () => { engine.arrange(); // Assert - // eslint-disable-next-line @typescript-eslint/unbound-method expect(engine.arrangeScreen).toBeCalledTimes(4); }); });