diff options
| author | Vojta Jina | 2012-09-19 21:57:03 -0700 | 
|---|---|---|
| committer | Igor Minar | 2012-10-17 13:17:16 -0700 | 
| commit | a5d434d857f9059fe277e348fe9876d62ca38a18 (patch) | |
| tree | 2c2b6b5bfc02b12b8546a6edd9f1227952b8efed | |
| parent | 0ae0591f42691586d29c9366bdb257eeec8f002b (diff) | |
| download | angular.js-a5d434d857f9059fe277e348fe9876d62ca38a18.tar.bz2 | |
chore(test): add junit config for testacular
| -rw-r--r-- | testacular-e2e.conf.js | 5 | ||||
| -rw-r--r-- | testacular-jqlite.conf.js | 7 | ||||
| -rw-r--r-- | testacular-jquery.conf.js | 7 | ||||
| -rw-r--r-- | testacular-modules.conf.js | 7 | 
4 files changed, 23 insertions, 3 deletions
| diff --git a/testacular-e2e.conf.js b/testacular-e2e.conf.js index 4a815d9d..07c79c70 100644 --- a/testacular-e2e.conf.js +++ b/testacular-e2e.conf.js @@ -13,3 +13,8 @@ proxies = {    '/angular': 'http://localhost:8000/build/angular',    '/': 'http://localhost:8000/build/docs/'  }; + +junitReporter = { +  outputFile: 'test_out/e2e.xml', +  suite: 'E2E' +}; diff --git a/testacular-jqlite.conf.js b/testacular-jqlite.conf.js index 6cf54815..6cb98114 100644 --- a/testacular-jqlite.conf.js +++ b/testacular-jqlite.conf.js @@ -6,4 +6,9 @@ exclude = ['**/*jasmine*/**', '**/*jstd*/**'].concat(angularFiles.files.jstdExcl  autoWatch = true;  logLevel = LOG_INFO;  logColors = true; -browsers = ['Chrome'] +browsers = ['Chrome']; + +junitReporter = { +  outputFile: 'test_out/jqlite.xml', +  suite: 'jqLite' +}; diff --git a/testacular-jquery.conf.js b/testacular-jquery.conf.js index 68de8356..7b527a15 100644 --- a/testacular-jquery.conf.js +++ b/testacular-jquery.conf.js @@ -6,4 +6,9 @@ exclude = ['**/*jasmine*/**', '**/*jstd*/**'].concat(angularFiles.files.jstdJque  autoWatch = true;  logLevel = LOG_INFO;  logColors = true; -browsers = ['Chrome'] +browsers = ['Chrome']; + +junitReporter = { +  outputFile: 'test_out/jquery.xml', +  suite: 'jQuery' +}; diff --git a/testacular-modules.conf.js b/testacular-modules.conf.js index ac03d076..9fea7d58 100644 --- a/testacular-modules.conf.js +++ b/testacular-modules.conf.js @@ -6,4 +6,9 @@ exclude = ['**/*jasmine*/**', '**/*jstd*/**'];  autoWatch = true;  logLevel = LOG_INFO;  logColors = true; -browsers = ['Chrome'] +browsers = ['Chrome']; + +junitReporter = { +  outputFile: 'test_out/modules.xml', +  suite: 'modules' +}; | 
