You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
426 B

'use strict';
function settingFor(settings, propertyName, fallback) {
const value = settings[`mocha/${propertyName}`];
const mochaSettings = settings.mocha || {};
return value || mochaSettings[propertyName] || fallback;
}
module.exports = {
getAddtionalNames(settings) {
const additionalCustomNames = settingFor(settings, 'additionalCustomNames', []);
return additionalCustomNames;
}
};