(text: string)
| 408 | .map((tool) => String(tool.owner)) |
| 409 | .find((value) => value.length > 0); |
| 410 | const normalize = (text: string): string => { |
| 411 | let out = text |
| 412 | .replaceAll(openapiSlug, "openapi-fixture") |
| 413 | .replaceAll(graphqlSlug, "graphql-fixture"); |
| 414 | if (owner) out = out.replaceAll(owner, "<owner>"); |
| 415 | return out; |
| 416 | }; |
| 417 | |
| 418 | const sections = [ |
| 419 | ["OpenAPI fixture (`Orders API`)", openapiTools], |
no outgoing calls
no test coverage detected