mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-11 14:40:52 -07:00
33 lines
787 B
TypeScript
33 lines
787 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, vi } from 'vitest';
|
|
import { appEvents, AppEvent } from './events.js';
|
|
|
|
describe('events', () => {
|
|
it('should allow registering and emitting events', () => {
|
|
const callback = vi.fn();
|
|
appEvents.on(AppEvent.SelectionWarning, callback);
|
|
|
|
appEvents.emit(AppEvent.SelectionWarning);
|
|
|
|
expect(callback).toHaveBeenCalled();
|
|
|
|
appEvents.off(AppEvent.SelectionWarning, callback);
|
|
});
|
|
|
|
it('should work with events without data', () => {
|
|
const callback = vi.fn();
|
|
appEvents.on(AppEvent.Flicker, callback);
|
|
|
|
appEvents.emit(AppEvent.Flicker);
|
|
|
|
expect(callback).toHaveBeenCalled();
|
|
|
|
appEvents.off(AppEvent.Flicker, callback);
|
|
});
|
|
});
|