diff --git a/src/node-host/runtime.test.ts b/src/node-host/runtime.test.ts index f3d011a51154..a02d6d70f153 100644 --- a/src/node-host/runtime.test.ts +++ b/src/node-host/runtime.test.ts @@ -160,9 +160,8 @@ describe("node-host duplex capability selection", () => { enableDuplexPluginCommands: true, }); - expect(listRegisteredNodeHostCapsAndCommands).toHaveBeenLastCalledWith( - expect.anything(), - { includeDuplex: true }, - ); + expect(listRegisteredNodeHostCapsAndCommands).toHaveBeenLastCalledWith(expect.anything(), { + includeDuplex: true, + }); }); }); diff --git a/src/node-host/worker.test.ts b/src/node-host/worker.test.ts index 158c724ce3ca..38088be607af 100644 --- a/src/node-host/worker.test.ts +++ b/src/node-host/worker.test.ts @@ -23,7 +23,9 @@ describe("parseNodeHostWorkerInput", () => { JSON.stringify({ type: "invoke-input", invokeId: "invoke-1", seq: -1, payloadJSON: "x" }), ), ).toBeNull(); - expect(parseNodeHostWorkerInput(JSON.stringify({ type: "invoke-cancel", invokeId: "" }))).toBeNull(); + expect( + parseNodeHostWorkerInput(JSON.stringify({ type: "invoke-cancel", invokeId: "" })), + ).toBeNull(); }); });