From cb12e2f5928cc9859ae1871f4233f08c9707165b Mon Sep 17 00:00:00 2001 From: Taylor Mullen Date: Tue, 10 Feb 2026 00:39:13 -0800 Subject: [PATCH] repro: allow vitest .only and focus on stderr blocking test --- .github/workflows/chained_e2e.yml | 2 +- integration-tests/hooks-system.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/chained_e2e.yml b/.github/workflows/chained_e2e.yml index b3ca45848d..b19c56834c 100644 --- a/.github/workflows/chained_e2e.yml +++ b/.github/workflows/chained_e2e.yml @@ -221,7 +221,7 @@ jobs: UV_THREADPOOL_SIZE: '32' NODE_ENV: 'test' shell: 'pwsh' - run: 'npx vitest run --root integration-tests hooks-system.test.ts' + run: 'npx vitest run --root integration-tests hooks-system.test.ts --allowOnly' evals: name: 'Evals (ALWAYS_PASSING)' diff --git a/integration-tests/hooks-system.test.ts b/integration-tests/hooks-system.test.ts index 48ded5df8b..ad44fac19a 100644 --- a/integration-tests/hooks-system.test.ts +++ b/integration-tests/hooks-system.test.ts @@ -1888,7 +1888,7 @@ console.log(JSON.stringify({decision: "block", systemMessage: "Disabled hook sho expect(disabledHookLog).toBeUndefined(); }); - it.only('should respect disabled hooks across multiple operations', async () => { + it('should respect disabled hooks across multiple operations', async () => { rig.setup('should respect disabled hooks across multiple operations', { fakeResponsesPath: join( import.meta.dirname,