qwen-code/packages/server/src/index.test.ts

10 lines
272 B
TypeScript
Raw Normal View History

2025-04-19 18:07:24 +01:00
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');
});
});