()
| 67 | |
| 68 | // Everything the UI reports about a request it made itself. |
| 69 | const reportedFailures = (): ReadonlyArray<ReportedException> => |
| 70 | reports |
| 71 | .filter((event) => event.tags?.["executor.ui.surface"] === "api_client") |
| 72 | .flatMap((event) => event.exception?.values ?? []); |
| 73 | |
| 74 | await step("Open the integrations console", async () => { |
| 75 | await visit(page, "/integrations"); |
no outgoing calls
no test coverage detected