From b8a7bfd136e79013236940a69923dbe4afe01da7 Mon Sep 17 00:00:00 2001 From: anthony bushong Date: Wed, 27 Aug 2025 17:00:50 -0700 Subject: [PATCH] fix(e2e): skip flaky stdin context test (#7264) --- integration-tests/stdin-context.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/stdin-context.test.ts b/integration-tests/stdin-context.test.ts index 912fa0c2..3ec68100 100644 --- a/integration-tests/stdin-context.test.ts +++ b/integration-tests/stdin-context.test.ts @@ -7,7 +7,7 @@ import { describe, it, expect } from 'vitest'; import { TestRig, printDebugInfo, validateModelOutput } from './test-helper.js'; -describe('stdin context', () => { +describe.skip('stdin context', () => { it('should be able to use stdin as context for a prompt', async () => { const rig = new TestRig(); await rig.setup('should be able to use stdin as context for a prompt');