mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 09:17:53 +00:00
fix typos in diverse files (#3284)
Co-authored-by: Scott Densmore <scottdensmore@mac.com>
This commit is contained in:
@@ -15,7 +15,7 @@ export interface CompressionDisplayProps {
|
||||
}
|
||||
|
||||
/*
|
||||
* Compression messages appear when the /compress command is ran, and show a loading spinner
|
||||
* Compression messages appear when the /compress command is run, and show a loading spinner
|
||||
* while compression is in progress, followed up by some compression stats.
|
||||
*/
|
||||
export const CompressionMessage: React.FC<CompressionDisplayProps> = ({
|
||||
|
||||
@@ -118,7 +118,7 @@ describe('<ToolMessage />', () => {
|
||||
expect(lastFrame()).toContain('x');
|
||||
});
|
||||
|
||||
it('shows paused spiner for Executing status when streamingState is Idle', () => {
|
||||
it('shows paused spinner for Executing status when streamingState is Idle', () => {
|
||||
const { lastFrame } = renderWithContext(
|
||||
<ToolMessage {...baseProps} status={ToolCallStatus.Executing} />,
|
||||
StreamingState.Idle,
|
||||
@@ -128,7 +128,7 @@ describe('<ToolMessage />', () => {
|
||||
expect(lastFrame()).not.toContain('✔');
|
||||
});
|
||||
|
||||
it('shows paused spiner for Executing status when streamingState is WaitingForConfirmation', () => {
|
||||
it('shows paused spinner for Executing status when streamingState is WaitingForConfirmation', () => {
|
||||
const { lastFrame } = renderWithContext(
|
||||
<ToolMessage {...baseProps} status={ToolCallStatus.Executing} />,
|
||||
StreamingState.WaitingForConfirmation,
|
||||
|
||||
Reference in New Issue
Block a user