(client: Client, integration: IntegrationSlug)
| 180 | }); |
| 181 | |
| 182 | const ownToolNames = (client: Client, integration: IntegrationSlug) => |
| 183 | Effect.map(client.tools.list({ query: { integration, owner: "user" } }), (tools) => |
| 184 | tools.map((tool) => tool.name).sort(), |
| 185 | ); |
| 186 | |
| 187 | scenario( |
| 188 | "Convergence · a spec refresh reaches a co-worker's own connection on their next read", |
no test coverage detected