Fix test choking on verbiage

This commit is contained in:
Sam Carlton 2022-06-12 17:39:51 -05:00
parent 652379628f
commit ab4401786c

View file

@ -20,7 +20,9 @@ function makeTitle ( listing ) {
}
function makeDescription ( listing ) {
return `Latest reported support status of ${ listing.name } on Apple Silicon and ${ global.$config.processorsVerbiage } Processors.`
const processorsVerbiage = process.env.npm_package_config_verbiage_processors || this.$config.processorsVerbiage
return `Latest reported support status of ${ listing.name } on Apple Silicon and ${ processorsVerbiage } Processors.`
}
function convertYoutubeImageUrl ( stringWithUrls, extension ) {