From 8ae4e322113bb6fa4cace0b619133998ddd5a18d Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Mon, 26 Jan 2015 23:25:46 -0800 Subject: [PATCH] karma - Specify output for JUnit XML (when used) --- .gitignore | 1 + tests/karma.conf.js | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 9e086e9b90..9e557754c1 100644 --- a/.gitignore +++ b/.gitignore @@ -147,6 +147,7 @@ drupal/ WordPress joomla packages/ +tests/output tests/phpunit/CiviTest/civicrm.settings.local.php tests/phpunit/CiviTest/truncate.xml tools/scripts/releaser/releaser.conf diff --git a/tests/karma.conf.js b/tests/karma.conf.js index 1f977dc7e8..356acec932 100644 --- a/tests/karma.conf.js +++ b/tests/karma.conf.js @@ -31,6 +31,10 @@ module.exports = function(config) { logLevel: config.LOG_INFO, port: 9876, reporters: ['progress'], + junitReporter: { + outputFile: 'tests/output/karma.xml', + suite: '' + }, singleRun: false }); }; -- 2.25.1