gemini-cli / packages /cli /src /utils /events.test.ts
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
7421850 verified
Raw
History Blame Contribute Delete
787 Bytes
/**
* @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);
});
});