fix: harden Windows computer use runtime (#1757)

This commit is contained in:
Jinwoo Hong
2026-05-13 12:37:47 -07:00
committed by GitHub
parent a9ea3c129d
commit abcd2d5836
5 changed files with 502 additions and 91 deletions
+4 -2
View File
@@ -364,9 +364,11 @@ describe('orca computer CLI handlers', () => {
expect(parsed.result.screenshot).toMatchObject({
dataOmitted: true,
format: 'png',
expiresAt: expect.any(String),
path: expect.stringContaining('orca-computer-use/req_state-screenshot.png')
expiresAt: expect.any(String)
})
expect(String(parsed.result.screenshot.path).replaceAll('\\', '/')).toContain(
'orca-computer-use/req_state-screenshot.png'
)
})
it('shows coordinate space and truncation in pretty state output', async () => {