mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-25 20:44:46 -07:00
Allow users to type while waiting for MCP servers (#8021)
This commit is contained in:
committed by
GitHub
parent
f0bbfe5f0a
commit
2b05cf3bb4
@@ -416,10 +416,9 @@ describe('AppContainer State Management', () => {
|
||||
});
|
||||
|
||||
describe('Version Handling', () => {
|
||||
it('handles different version formats', () => {
|
||||
const versions = ['1.0.0', '2.1.3-beta', '3.0.0-nightly'];
|
||||
|
||||
versions.forEach((version) => {
|
||||
it.each(['1.0.0', '2.1.3-beta', '3.0.0-nightly'])(
|
||||
'handles version format: %s',
|
||||
(version) => {
|
||||
expect(() => {
|
||||
render(
|
||||
<AppContainer
|
||||
@@ -430,8 +429,8 @@ describe('AppContainer State Management', () => {
|
||||
/>,
|
||||
);
|
||||
}).not.toThrow();
|
||||
});
|
||||
});
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
describe('Error Handling', () => {
|
||||
|
||||
Reference in New Issue
Block a user