UNPKG

custom-cornerstone-tools

Version:

Medical imaging tools for the Cornerstone library - customized for DrNuvem

12 lines (11 loc) 343 B
module.exports = function (extendedConfig) { 'use strict'; var baseConfig = require('./karma-base.js'); // Overrides the base configuration for karma with the given properties for (var i in baseConfig) { if (typeof extendedConfig[i] === 'undefined') { extendedConfig[i] = baseConfig[i]; } } return extendedConfig; };