blob: 07d60cc46166acf9b63a6be27f2378ad21f9d7a2 (
plain)
1
2
3
4
5
6
7
8
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');
});
});
|