feat(ai): 优化拆解目标和负责人推荐

This commit is contained in:
Script Generator
2026-06-29 16:19:52 +08:00
parent 0e27a4d4c5
commit 7f24e16491
19 changed files with 658 additions and 118 deletions

View File

@@ -23,4 +23,7 @@ test('defaults and clamps test case AI estimates below half an hour when appropr
assert.equal(clampTestCaseAiEstimateHours('test_functional', 0.05), 0.1);
assert.equal(clampTestCaseAiEstimateHours('test_api', 0.1), 0.2);
assert.equal(clampTestCaseAiEstimateHours('test_exception', 2), 0.5);
assert.equal(clampTestCaseAiEstimateHours('test_form_validation', 0.05), 0.1);
assert.equal(clampTestCaseAiEstimateHours('test_data_consistency', 2), 0.5);
assert.equal(getDefaultTestCaseAiEstimateHours('test_regression'), 0.25);
});