import { describe, it, expect } from 'vitest'; import { getDemoResponse } from './demo-responses'; describe('demo-responses', () => { it('returns a demo response', () => { const response = getDemoResponse('hello'); const content = typeof response === 'string' ? response : response.content; expect(content?.length).toBeGreaterThan(0); }); });