(filter: { integration: string })
| 141 | }, |
| 142 | }); |
| 143 | const toolNames = (filter: { integration: string }) => |
| 144 | Effect.map( |
| 145 | apiClient.tools.list({ |
| 146 | query: { integration: IntegrationSlug.make(filter.integration) }, |
| 147 | }), |
| 148 | (tools) => tools.map((tool) => tool.name).sort(), |
| 149 | ); |
| 150 | expect(yield* toolNames({ integration: slug }), "v1 tools are live").toEqual([ |
| 151 | "legacy.legacyOp", |
| 152 | "ping.getOperation", |
no test coverage detected