()
| 448 | } |
| 449 | |
| 450 | async function assertWorkspaceAppAssets(): Promise<void> { |
| 451 | const entry = getWorkspaceAppManifestEntry(); |
| 452 | const candidates = [entry.file, ...(entry.css ?? [])].map( |
| 453 | (assetPath) => new URL(`../dist/ui/${assetPath}`, import.meta.url), |
| 454 | ); |
| 455 | |
| 456 | for (const candidate of candidates) { |
| 457 | await access(candidate); |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | function processResult(snapshot: ProcessSnapshot): string { |
| 462 | const status = snapshot.running |
no test coverage detected