test(google-meet): type embedded agent mock args

This commit is contained in:
Vincent Koc
2026-05-03 17:32:08 -07:00
parent 1be1131631
commit 53426cf611

View File

@@ -3517,7 +3517,7 @@ describe("google-meet plugin", () => {
updateSessionStore: vi.fn(async (_storePath, mutator) => mutator(sessionStore as never)),
resolveSessionFilePath: vi.fn(() => "/tmp/session.json"),
},
runEmbeddedPiAgent: vi.fn(async () => ({
runEmbeddedPiAgent: vi.fn(async (_request: unknown) => ({
payloads: [{ text: "Use the Portugal launch data." }],
meta: {},
})),
@@ -3717,7 +3717,7 @@ describe("google-meet plugin", () => {
updateSessionStore: vi.fn(async (_storePath, mutator) => mutator(sessionStore as never)),
resolveSessionFilePath: vi.fn(() => "/tmp/session.json"),
},
runEmbeddedPiAgent: vi.fn(async () => ({
runEmbeddedPiAgent: vi.fn(async (_request: unknown) => ({
payloads: [{ text: "The launch is still on track." }],
meta: {},
})),