chore: Fix types in tests 41/N.

This commit is contained in:
cpojer
2026-02-17 15:48:16 +09:00
parent 3dc8d5656d
commit 6264c5e842
17 changed files with 81 additions and 43 deletions

View File

@@ -205,7 +205,7 @@ describe("sandboxRecreateCommand", () => {
mocks.listSandboxContainers.mockResolvedValue([match, noMatch]);
await sandboxRecreateCommand(
{ session: "target-session", browser: false, force: true },
{ session: "target-session", all: false, browser: false, force: true },
runtime as never,
);
@@ -220,7 +220,7 @@ describe("sandboxRecreateCommand", () => {
mocks.listSandboxContainers.mockResolvedValue([agent, agentSub, other]);
await sandboxRecreateCommand(
{ agent: "work", browser: false, force: true },
{ agent: "work", all: false, browser: false, force: true },
runtime as never,
);