(version, method, path)
| 128 | }) |
| 129 | |
| 130 | async function findOperation(version, method, path) { |
| 131 | const allOperations = await getFlatListOfOperations(version) |
| 132 | return allOperations.find((operation) => { |
| 133 | return operation.requestPath === path && operation.verb.toLowerCase() === method.toLowerCase() |
| 134 | }) |
| 135 | } |
| 136 | |
| 137 | describe('code examples are defined', () => { |
| 138 | test('GET', async () => { |
no test coverage detected