(
ms: number,
abortSignal?: AbortSignal
)
| 1081 | } |
| 1082 | |
| 1083 | protected async waitForProjectSyncRetryDelay( |
| 1084 | ms: number, |
| 1085 | abortSignal?: AbortSignal |
| 1086 | ): Promise<void> { |
| 1087 | await sleepWithAbort(ms, abortSignal); |
| 1088 | } |
| 1089 | |
| 1090 | private async computeSnapshotDigest(projectPath: string): Promise<string> { |
| 1091 | // Workspace materialization only depends on branch tips. Tags are shared repo |
no test coverage detected