mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-30 13:43:00 -07:00
ci: run all suspect tests again after skipping AppRig
This commit is contained in:
@@ -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?');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user