mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-13 12:57:12 -07:00
chore: update tests
This commit is contained in:
@@ -136,11 +136,16 @@ vi.mock('./QueuedMessageDisplay.js', () => ({
|
||||
return null;
|
||||
}
|
||||
return (
|
||||
<>
|
||||
<Box flexDirection="column">
|
||||
<Box paddingLeft={2}>
|
||||
<Text>Queued (press ↑ to edit):</Text>
|
||||
</Box>
|
||||
{messageQueue.map((message, index) => (
|
||||
<Text key={index}>{message}</Text>
|
||||
<Box key={index} paddingLeft={4}>
|
||||
<Text>{message}</Text>
|
||||
</Box>
|
||||
))}
|
||||
</>
|
||||
</Box>
|
||||
);
|
||||
},
|
||||
}));
|
||||
|
||||
@@ -47,8 +47,9 @@ Footer
|
||||
exports[`Composer > Snapshots > matches snapshot with stashed prompt and queued messages 1`] = `
|
||||
"
|
||||
Stashed (restores after submit)
|
||||
First queued message
|
||||
Second queued message
|
||||
Queued (press ↑ to edit):
|
||||
First queued message
|
||||
Second queued message
|
||||
|
||||
? for shortcuts
|
||||
────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
Reference in New Issue
Block a user