UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

12 lines (8 loc) 339 B
import { describe, expect, it } from 'vitest'; import { chainPickEmoji } from '../pickEmoji'; describe('chainPickEmoji', () => { it('should return a payload with the correct structure and embedded user content', () => { const result = chainPickEmoji('你是一名星际探索者'); expect(result).toMatchSnapshot(); }); });