(operations)
| 29 | } |
| 30 | |
| 31 | function createCategoryList(operations) { |
| 32 | const catSubCatList = [] |
| 33 | for (const category of Object.keys(operations)) { |
| 34 | const subcategories = Object.keys(operations[category]) |
| 35 | for (const subcategory of subcategories) { |
| 36 | catSubCatList.push(...operations[category][subcategory]) |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | return catSubCatList |
| 41 | } |
| 42 | |
| 43 | describe('markdown for each rest version', () => { |
| 44 | test('markdown file exists for every operationId prefix in all versions of the OpenAPI schema', async () => { |
no outgoing calls
no test coverage detected