(text: string)
| 336 | }, |
| 337 | |
| 338 | async expectTranscriptContains(text: string): Promise<void> { |
| 339 | await expect(transcriptLocator(page)).toContainText(text, { timeout: 45_000 }); |
| 340 | }, |
| 341 | |
| 342 | async expectActionButtonVisible(label: string): Promise<void> { |
| 343 | const button = page.getByRole("button", { name: label }); |
nothing calls this directly
no test coverage detected