chore(int): skip flaky tests (#10736)

This commit is contained in:
Gal Zahavi
2025-10-08 13:05:11 -07:00
committed by GitHub
parent c0552ceb22
commit b0b1be0c2a
5 changed files with 10 additions and 5 deletions

View File

@@ -880,7 +880,8 @@ describe('extension tests', () => {
expect(mockLogExtensionInstallEvent).toHaveBeenCalled();
});
it('should show users information on their mcp server when installing', async () => {
//TODO - https://github.com/google-gemini/gemini-cli/issues/10739
it.skip('should show users information on their mcp server when installing', async () => {
const consoleInfoSpy = vi.spyOn(console, 'info');
const sourceExtDir = createExtension({
extensionsDir: tempHomeDir,

View File

@@ -49,7 +49,8 @@ describe('setupGithubCommand', async () => {
if (scratchDir) await fs.rm(scratchDir, { recursive: true });
});
it('returns a tool action to download github workflows and handles paths', async () => {
//TODO - https://github.com/google-gemini/gemini-cli/issues/10740
it.skip('returns a tool action to download github workflows and handles paths', async () => {
const fakeRepoOwner = 'fake';
const fakeRepoName = 'repo';
const fakeRepoRoot = scratchDir;