From 09e5d60d3c5c19c83615548e0032e0ec30c6a68d Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 14 Jul 2026 03:35:07 -0700 Subject: [PATCH] fix(ci): format node-host runtime/worker tests Unformatted test edits landed on main and fail check-lint's oxfmt gate on every branch. --- src/node-host/runtime.test.ts | 7 +++---- src/node-host/worker.test.ts | 4 +++- 2 files changed, 6 insertions(+), 5 deletions(-) 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(); }); });