add junit reporter to testacular configs
authorIgor Minar <igor@angularjs.org>
Thu, 20 Sep 2012 17:05:41 +0000 (10:05 -0700)
committerIgor Minar <igor@angularjs.org>
Thu, 20 Sep 2012 17:05:41 +0000 (10:05 -0700)
config/testacular-e2e.conf.js
config/testacular.conf.js

index 7ba2780..51f51d2 100644 (file)
@@ -16,3 +16,7 @@ proxies = {
   '/': 'http://localhost:8000/'
 };
 
+junitReporter = {
+  outputFile: 'test_out/e2e.xml',
+  suite: 'e2e'
+};
index 899e275..ad0ade4 100644 (file)
@@ -13,3 +13,8 @@ files = [
 autoWatch = true;
 
 browsers = ['Chrome'];
+
+junitReporter = {
+  outputFile: 'test_out/unit.xml',
+  suite: 'unit'
+};