mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-15 08:31:14 -07:00
24 lines
694 B
TypeScript
24 lines
694 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, vi } from 'vitest';
|
|
import { listExtensions } from './extensions.js';
|
|
import type { Config } from '../config/config.js';
|
|
|
|
describe('listExtensions', () => {
|
|
it('should call config.getExtensions and return the result', () => {
|
|
const mockExtensions = [{ name: 'ext1' }, { name: 'ext2' }];
|
|
const mockConfig = {
|
|
getExtensions: vi.fn().mockReturnValue(mockExtensions),
|
|
} as unknown as Config;
|
|
|
|
const result = listExtensions(mockConfig);
|
|
|
|
expect(mockConfig.getExtensions).toHaveBeenCalledTimes(1);
|
|
expect(result).toEqual(mockExtensions);
|
|
});
|
|
});
|