/** * @author [Tristan Valcke]{@link https://github.com/Itee} * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause} * * @module Config-Karma-Units * @description The file manage the karma configuration for run units tests that are under `tests/units` folder */ const packageInfos = require( '../package' ) /** * Will assign an appropriate configuration object about unit tests for karma. * * @generator * @param {object} config - The karma configuration object to extend */ function CreateKarmaUnitsConfiguration ( config ) { config.set( { // base path that will be used to resolve all patterns (eg. files, exclude) basePath: '../tests/', // frameworks to use // available frameworks: https://npmjs.org/browse/keyword/karma-adapter frameworks: [ 'mocha', 'chai' ], // list of files / patterns to load in the browser files: [ `builds/${packageInfos.name}.units.js` ], // list of files to exclude exclude: [], // preprocess matching files before serving them to the browser // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: {}, // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter reporters: [ 'mocha', 'html' ], htmlReporter: { outputFile: '../docs/unit-tests-report.html', // Optional pageTitle: 'Unit Tests', subPageTitle: 'Result of unit testing for Itee-Database.', groupSuites: true, useCompactStyle: false, useLegacyStyle: false, showOnlyFailed: false }, // web server port port: 9876, // enable / disable colors in the output (reporters and logs) colors: true, // level of logging // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_INFO, // enable / disable watching file and executing tests whenever any file changes autoWatch: false, // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher browsers: [ 'Firefox' ], // browsers: [ 'Chrome' ], // browsers: [ 'Edge' ], // browsers: [ 'Firefox', 'Chrome', 'Edge' ], // Format assertion errors and stack traces. Useful for removing vendors and compiled sources. Return an empty line '' to remove it. formatError: () => '', // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits singleRun: true, // Concurrency level // how many browser should be started simultaneous concurrency: 4, // If, during test execution, Karma does not receive any message from a browser browserNoActivityTimeout: 60000, browserDisconnectTimeout: 60000, // If browser does not capture in given timeout [ms], kill it captureTimeout: 60000, // How long will Karma wait for browser process to terminate before sending a SIGKILL signal. processKillTimeout: 360000 } ) } module.exports = CreateKarmaUnitsConfiguration