(result: { readonly raw: unknown })
| 85 | `; |
| 86 | |
| 87 | const structuredOf = (result: { readonly raw: unknown }): Record<string, unknown> => |
| 88 | ((result.raw as { structuredContent?: Record<string, unknown> }).structuredContent ?? |
| 89 | {}) as Record<string, unknown>; |
| 90 | |
| 91 | const artifactContent = (page: Page) => |
| 92 | page.frameLocator('[data-testid="artifact-shell-frame"]').frameLocator("iframe"); |
no outgoing calls
no test coverage detected