repro: allow vitest .only and focus on stderr blocking test

This commit is contained in:
Taylor Mullen
2026-02-10 00:39:13 -08:00
parent 4946a5be73
commit cb12e2f592
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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)'
+1 -1
View File
@@ -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,