test(FN-4313): complete Step 2 — add project engine id accessor

Fusion-Task-Id: FN-4313
Fusion-Task-Lineage: 36b8aad3-20f4-475b-9b0f-63e5458d1b91
This commit is contained in:
Fusion
2026-05-13 22:26:36 -07:00
committed by gsxdsm
parent 74f3320312
commit 60c0a38ed3
2 changed files with 23 additions and 0 deletions

View File

@@ -626,6 +626,11 @@ export class ProjectEngine {
return this.config.workingDirectory;
}
/** Get the project id. */
getProjectId(): string {
return this.config.projectId;
}
/** Get the PrMonitor (if initialized). */
getPrMonitor(): PrMonitor | undefined {
return this.prMonitor;