()
| 116 | } |
| 117 | |
| 118 | function createCheckObj() { |
| 119 | const versions = {} |
| 120 | Object.keys(allVersions).forEach((version) => { |
| 121 | isApiVersioned(version) |
| 122 | ? getOnlyApiVersions(version).forEach((apiVersion) => (versions[apiVersion] = {})) |
| 123 | : (versions[`${allVersions[version].version}`] = {}) |
| 124 | }) |
| 125 | |
| 126 | return versions |
| 127 | } |
| 128 | |
| 129 | function getDifferences(openAPISchemaCheck, contentCheck) { |
| 130 | const differences = {} |
no test coverage detected