orchestrix-yuri 4.8.3 → 4.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -52,8 +52,8 @@ const MESSAGES = {
|
|
|
52
52
|
zh: '🎉 规划完成!{summary}\n\n下一步:检查上面的文档,然后运行 `*develop` 开始开发。',
|
|
53
53
|
},
|
|
54
54
|
dev_complete: {
|
|
55
|
-
en: '🎉 Development complete! All stories implemented.\n\
|
|
56
|
-
zh: '🎉 开发完成!所有 story 已实现。\n\n
|
|
55
|
+
en: '🎉 Development complete! All stories implemented.\n\nAuto-starting smoke tests...',
|
|
56
|
+
zh: '🎉 开发完成!所有 story 已实现。\n\n自动启动冒烟测试...',
|
|
57
57
|
},
|
|
58
58
|
test_all_passed: {
|
|
59
59
|
en: '\n🚀 All tests passed! Run `*deploy` when ready.',
|
|
@@ -887,6 +887,16 @@ class PhaseOrchestrator {
|
|
|
887
887
|
|
|
888
888
|
log.engine('Dev phase complete');
|
|
889
889
|
this.onComplete('develop', msg('dev_complete'));
|
|
890
|
+
|
|
891
|
+
// Auto-chain: start test phase immediately after dev completes.
|
|
892
|
+
// This makes "develop all stories then test" a single unattended flow.
|
|
893
|
+
try {
|
|
894
|
+
const result = this.startTest(this._projectRoot);
|
|
895
|
+
log.engine(`Auto-chained to test phase: ${result.slice(0, 80)}`);
|
|
896
|
+
this.onProgress(result);
|
|
897
|
+
} catch (err) {
|
|
898
|
+
log.warn(`Auto-chain to test failed: ${err.message}`);
|
|
899
|
+
}
|
|
890
900
|
}
|
|
891
901
|
|
|
892
902
|
// ── Test Phase ──────────────────────────────────────────────────────────────
|