From 480dd9292a01571209a4d695e42f3ad4fe831226 Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Sun, 9 Aug 2026 16:39:41 +0800 Subject: [PATCH] test(windows): budget instrumented integration waits --- .../tool-session-query/tests/sqlite-integration.spec.ts | 2 +- scripts/change-scope.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/session-query/tool-session-query/tests/sqlite-integration.spec.ts b/packages/session-query/tool-session-query/tests/sqlite-integration.spec.ts index 09c9c2e812..a00049eb3a 100644 --- a/packages/session-query/tool-session-query/tests/sqlite-integration.spec.ts +++ b/packages/session-query/tool-session-query/tests/sqlite-integration.spec.ts @@ -31,7 +31,7 @@ function fakeAgent(session: Session): Agent { } describe('tool-session-query with the real SQLite provider', () => { - it('searches live prior-step history and a persisted same-workspace log', async () => { + it('searches live prior-step history and a persisted same-workspace log', { timeout: 20_000 }, async () => { const root = await mkdtemp(join(tmpdir(), 'dsh-tool-session-query-')) temporaryDirectories.push(root) const ctx = new Context() diff --git a/scripts/change-scope.spec.ts b/scripts/change-scope.spec.ts index b230c8de12..423df6ea6b 100644 --- a/scripts/change-scope.spec.ts +++ b/scripts/change-scope.spec.ts @@ -97,7 +97,7 @@ function repositoryState(root: string): Record { } describe('change-scope', () => { - it('uses an explicit base on a fresh branch without a same-name remote and after its first push', () => { + it('uses an explicit base on a fresh branch without a same-name remote and after its first push', { timeout: 20_000 }, () => { const { root } = fixture() git(root, ['switch', '-c', 'feature']) git(root, ['branch', '--set-upstream-to=origin/master'])