(filter: { integration: string })
| 170 | }, |
| 171 | }); |
| 172 | const toolNames = (filter: { integration: string }) => |
| 173 | Effect.map( |
| 174 | apiClient.tools.list({ |
| 175 | query: { integration: IntegrationSlug.make(filter.integration) }, |
| 176 | }), |
| 177 | (tools) => tools.map((tool) => tool.name).sort(), |
| 178 | ); |
| 179 | expect(yield* toolNames({ integration: slug }), "v1 tools are live").toEqual([ |
| 180 | "legacy.legacyOp", |
| 181 | "ping.getOperation", |
no test coverage detected