mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-14 23:31:13 -07:00
Adding some simple tests. (#54)
This commit is contained in:
9
packages/server/src/index.test.ts
Normal file
9
packages/server/src/index.test.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
import { helloServer } from './index.js';
|
||||
|
||||
describe('server tests', () => {
|
||||
it('should export helloServer function', () => {
|
||||
expect(helloServer).toBeDefined();
|
||||
expect(typeof helloServer).toBe('function');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user