diff options
| author | Shreya Keshive <[email protected]> | 2025-08-14 17:50:20 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-14 17:50:20 +0000 |
| commit | 798c4d1311dc9e415caf422f5eb6a7d7e65f0a7a (patch) | |
| tree | 611271ff4a548e374a46a9b0b186ed57339dc1ae /packages/cli/src/ui/App.test.tsx | |
| parent | 2416a80e9c1d12718e5cf02db8582cff4c9a5942 (diff) | |
Update IDE integration context toggle shortcut to ctrl+G (#6245)
Diffstat (limited to 'packages/cli/src/ui/App.test.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.test.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/cli/src/ui/App.test.tsx b/packages/cli/src/ui/App.test.tsx index 3636823b..c797b778 100644 --- a/packages/cli/src/ui/App.test.tsx +++ b/packages/cli/src/ui/App.test.tsx @@ -528,7 +528,7 @@ describe('App UI', () => { ); currentUnmount = unmount; await Promise.resolve(); - expect(lastFrame()).toContain('1 open file (ctrl+e to view)'); + expect(lastFrame()).toContain('1 open file (ctrl+g to view)'); }); it('should not display any files when not available', async () => { @@ -583,7 +583,7 @@ describe('App UI', () => { ); currentUnmount = unmount; await Promise.resolve(); - expect(lastFrame()).toContain('3 open files (ctrl+e to view)'); + expect(lastFrame()).toContain('3 open files (ctrl+g to view)'); }); it('should display active file and other context', async () => { @@ -612,7 +612,7 @@ describe('App UI', () => { currentUnmount = unmount; await Promise.resolve(); expect(lastFrame()).toContain( - 'Using: 1 open file (ctrl+e to view) | 1 GEMINI.md file', + 'Using: 1 open file (ctrl+g to view) | 1 GEMINI.md file', ); }); |
