// 测试数据 fixtures const testData = { users: { newUser: { account: `e2e_${Date.now()}`, password: 'Test123456', }, existing: { account: 'e2e_existing', password: 'Test123456', }, }, role: { displayName: 'E2E测试角色', gender: 'female', age: '25', relationship: '女友', personality: '温柔,体贴,善解人意', background: '来自江南水乡的女孩,喜欢读书和绘画', speechStyle: '轻声细语,偶尔带点小俏皮', likes: '读书,绘画,猫咪', dislikes: '吵闹,谎言', memories: '一起看过的樱花,第一次约会', secrets: '其实很怕打雷', greeting: '你回来啦~今天过得怎么样?', model: 'gpt-4o', temperature: '0.8', maxTokens: '2048', price: '29.9', }, }; module.exports = testData;