等待后端更新接口

This commit is contained in:
2026-08-03 16:49:26 +08:00
parent ac5823547a
commit 5b79893650
131 changed files with 5324 additions and 1392 deletions
@@ -37,7 +37,7 @@
await client.submitFeedback({
feedbackType: 'bug',
feedbackContent: '页面按钮无响应',
contactInfo: '19181970173',
contactInfo: '<测试联系电话>',
feedbackTitle: 'must-drop',
appUserId: 'must-drop'
});
@@ -50,7 +50,7 @@ assert.deepEqual(calls, [
body: {
feedbackType: 'bug',
feedbackContent: '页面按钮无响应',
contactInfo: '19181970173'
contactInfo: '<测试联系电话>'
}
},
{ method: 'GET', url: '/genealogy/pc/feedback' }
@@ -120,13 +120,13 @@ Expected: PASS。
assert.deepEqual(FeedbackPages.buildFeedbackBody({
feedbackType: ' bug ',
feedbackContent: ' 页面按钮无响应 ',
contactInfo: ' 19181970173 ',
contactInfo: ' <测试联系电话> ',
feedbackTitle: 'must-drop',
appUserId: 'must-drop'
}), {
feedbackType: 'bug',
feedbackContent: '页面按钮无响应',
contactInfo: '19181970173'
contactInfo: '<测试联系电话>'
});
```