chore: update tests

This commit is contained in:
Jack Wotherspoon
2026-03-24 23:54:40 -07:00
parent c7a2250e1e
commit 76638be07f
2 changed files with 11 additions and 5 deletions
@@ -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
────────────────────────────────────────────────────────────────────────────────────────────────────