|
@@ -48,6 +48,18 @@ module.exports = function (config) {
|
|
|
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
|
logLevel: config.LOG_INFO,
|
|
|
|
|
|
+ reporters: ['progress', 'junit'],
|
|
|
+
|
|
|
+ junitReporter: {
|
|
|
+ outputDir: '.temp/testResults', // results will be saved as $outputDir/$browserName.xml
|
|
|
+ outputFile: 'UnitTests.xml', // if included, results will be saved as $outputDir/$browserName/$outputFile
|
|
|
+ suite: 'Unit Tests', // suite will become the package name attribute in xml testsuite element
|
|
|
+ useBrowserName: false, // add browser name to report and classes names
|
|
|
+ nameFormatter: undefined, // function (browser, result) to customize the name attribute in xml testcase element
|
|
|
+ classNameFormatter: undefined, // function (browser, result) to customize the classname attribute in xml testcase element
|
|
|
+ properties: {} // key value pair of properties to add to the <properties> section of the report
|
|
|
+ },
|
|
|
+
|
|
|
browsers: ['ChromeHeadless']
|
|
|
})
|
|
|
}
|