mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-12 07:01:09 -07:00
Fix build.
This commit is contained in:
@@ -330,7 +330,7 @@ describe('GrepTool', () => {
|
||||
|
||||
// Count occurrences of match lines in the output
|
||||
// Matches lines start with L<number>:
|
||||
const matches = result.llmContent.match(/^L\d+:.*world/gm);
|
||||
const matches = (result.llmContent as string).match(/^L\d+:.*world/gm);
|
||||
expect(matches?.length).toBe(2);
|
||||
}, 30000);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user