ci: run all suspect tests again after skipping AppRig

This commit is contained in:
mkorwel
2026-04-16 22:33:32 +00:00
parent 6ef2bf5b65
commit 6b4f7743f0
+10 -1
View File
@@ -12,11 +12,16 @@ import { debugLogger } from '@google/gemini-cli-core';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
describe.sequential('AppRig', () => {
describe.skip('AppRig', () => {
let rig: AppRig | undefined;
beforeEach(() => {
vi.useFakeTimers();
});
afterEach(async () => {
await rig?.unmount();
vi.useRealTimers();
});
it('should handle deterministic tool turns with breakpoints', async () => {
@@ -76,6 +81,10 @@ describe.sequential('AppRig', () => {
await rig.type('Hello');
await rig.pressEnter();
if (vi.isFakeTimers()) {
await vi.advanceTimersByTimeAsync(1000);
}
// Wait for model response
await rig.waitForOutput('Hello! How can I help you today?');
});