From f4da2d8c6363b6785928811e20149554a73f3284 Mon Sep 17 00:00:00 2001 From: m4air Date: Sun, 13 Sep 2026 00:47:14 -0700 Subject: [PATCH] test(relay): allow additive filesystem capabilities --- src/relay/fs-handler-file-range-dispatch.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/relay/fs-handler-file-range-dispatch.test.ts b/src/relay/fs-handler-file-range-dispatch.test.ts index 3f1de4693a4..20f5d69dd21 100644 --- a/src/relay/fs-handler-file-range-dispatch.test.ts +++ b/src/relay/fs-handler-file-range-dispatch.test.ts @@ -149,7 +149,7 @@ describe('fs.getCapabilities', () => { // is additive. Dropping the pre-existing key would strand an older desktop's // quick-open probe on a host that still serves it. it('advertises ranged reads without dropping the existing capability', async () => { - await expect(underTest.call('fs.getCapabilities', {})).resolves.toEqual({ + await expect(underTest.call('fs.getCapabilities', {})).resolves.toMatchObject({ quickOpenSearchVersion: 1, rangedReadVersion: 1 })