驳回
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m1s

This commit is contained in:
2026-06-26 18:14:37 +08:00
parent 1baa6d87cf
commit 99de03604d
4 changed files with 26 additions and 9 deletions

View File

@@ -51,14 +51,14 @@ test('agent recharge rejection posts the rejection reason to the order rejection
const { AgentRechargeService } = await import(pathToFileURL(bundlePath).href)
await AgentRechargeService.rejectAgentRecharge(42, {
reject_reason: '支付凭证不符合要求'
rejection_reason: '支付凭证不符合要求'
})
assert.deepEqual(calls, [
{
url: '/api/admin/agent-recharges/42/reject',
data: {
reject_reason: '支付凭证不符合要求'
rejection_reason: '支付凭证不符合要求'
}
}
])