mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-26 21:14:35 -07:00
33 lines
830 B
TypeScript
33 lines
830 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.OauthDisplayMessage, callback);
|
||
|
|
|
||
|
|
appEvents.emit(AppEvent.OauthDisplayMessage, 'test message');
|
||
|
|
|
||
|
|
expect(callback).toHaveBeenCalledWith('test message');
|
||
|
|
|
||
|
|
appEvents.off(AppEvent.OauthDisplayMessage, 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);
|
||
|
|
});
|
||
|
|
});
|