UNPKG

@codeceptjs/configure

Version:

Set of CodeceptJS config hooks to simplify configuration

11 lines (9 loc) 235 B
const merge = require('lodash.mergewith'); function customizer(objValue, srcValue) { if (Array.isArray(objValue)) { return objValue.concat(srcValue); } } module.exports = function (a, b) { return merge(a, b, customizer); }