(languages: string[])
| 180 | * @param {String[]} languages List of languages to test |
| 181 | */ |
| 182 | const linksSchemaValidation = (languages: string[]) => { |
| 183 | languages.forEach(language => { |
| 184 | void readJsonFile(language, 'links').then(fileJson => { |
| 185 | schemaValidation(language, 'links', fileJson, linksSchemaKeys); |
| 186 | }); |
| 187 | }); |
| 188 | }; |
| 189 | |
| 190 | /** |
| 191 | * Common Function that checks the json file |
no test coverage detected