aboutsummaryrefslogtreecommitdiff
path: root/test/content/operators/impls/BackgroundOperationOperator.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/content/operators/impls/BackgroundOperationOperator.test.ts')
-rw-r--r--test/content/operators/impls/BackgroundOperationOperator.test.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/content/operators/impls/BackgroundOperationOperator.test.ts b/test/content/operators/impls/BackgroundOperationOperator.test.ts
index b8b1fbd..77efeb2 100644
--- a/test/content/operators/impls/BackgroundOperationOperator.test.ts
+++ b/test/content/operators/impls/BackgroundOperationOperator.test.ts
@@ -1,7 +1,6 @@
import * as operations from "../../../../src/shared/operations";
import BackgroundOperationOperator from "../../../../src/content/operators/impls/BackgroundOperationOperator";
import OperationClient from "../../../../src/content/client/OperationClient";
-import { expect } from "chai";
class MockOperationClient implements OperationClient {
public readonly executedOps: {
@@ -30,7 +29,7 @@ describe("BackgroundOperationOperator", () => {
await sut.run();
- expect(client.executedOps).to.deep.equal([
+ expect(client.executedOps).toEqual([
{ op: { type: operations.TAB_CLOSE }, repeat: 2 },
]);
});