(client: Client, integration: IntegrationSlug)
| 166 | }); |
| 167 | |
| 168 | const ownToolNames = (client: Client, integration: IntegrationSlug) => |
| 169 | Effect.map(client.tools.list({ query: { integration, owner: "user" } }), (tools) => |
| 170 | tools.map((tool) => tool.name).sort(), |
| 171 | ); |
| 172 | |
| 173 | scenario( |
| 174 | "Convergence · a spec refresh reaches a co-worker's own connection on their next read", |
no test coverage detected