()
| 116 | const serveGreetingServer = serveGraphqlTestServer({ schema: makeGreetingGraphqlSchema() }); |
| 117 | |
| 118 | const makeExecutor = () => |
| 119 | createExecutor( |
| 120 | makeTestConfig({ plugins: [memoryCredentialsPlugin(), graphqlPlugin()] as const }), |
| 121 | ); |
| 122 | |
| 123 | const toolAddr = (integration: string, connection: string, tool: string): ToolAddress => |
| 124 | ToolAddress.make(`tools.${integration}.org.${connection}.${tool}`); |
no test coverage detected