()
| 73 | /** Selfhost shares one workspace across scenarios, so every title is unique to |
| 74 | * this run and assertions look for "mine", never "the only one". */ |
| 75 | const uniqueSuffix = () => randomBytes(4).toString("hex"); |
| 76 | |
| 77 | const structuredOf = (result: { readonly raw: unknown }): Record<string, unknown> => |
| 78 | ((result.raw as { structuredContent?: Record<string, unknown> }).structuredContent ?? |
no test coverage detected