Files
gemini-cli/packages/cli/src/ui/components/messages/InfoMessage.test.tsx

46 lines
1.2 KiB
TypeScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { render } from '../../../test-utils/render.js';
import { InfoMessage } from './InfoMessage.js';
import { describe, it, expect } from 'vitest';
describe('InfoMessage', () => {
it('renders with the correct default prefix and text', async () => {
const { lastFrame, waitUntilReady, unmount } = render(
<InfoMessage text="Just so you know" />,
);
await waitUntilReady();
const output = lastFrame();
expect(output).toMatchSnapshot();
unmount();
});
it('renders with a custom icon', async () => {
const { lastFrame, waitUntilReady, unmount } = render(
<InfoMessage text="Custom icon test" icon="★" />,
);
await waitUntilReady();
const output = lastFrame();
expect(output).toMatchSnapshot();
unmount();
});
it('renders multiline info messages', async () => {
const message = 'Info line 1\nInfo line 2';
const { lastFrame, waitUntilReady, unmount } = render(
<InfoMessage text={message} />,
);
await waitUntilReady();
const output = lastFrame();
expect(output).toMatchSnapshot();
unmount();
});
});