mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-17 17:41:24 -07:00
46 lines
1.2 KiB
TypeScript
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();
|
|
});
|
|
});
|