Skip to content

Commit

Permalink
chore(test): add junit config for testacular
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina authored and IgorMinar committed Oct 17, 2012
1 parent 0ae0591 commit a5d434d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
5 changes: 5 additions & 0 deletions testacular-e2e.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ proxies = {
'/angular': 'http://localhost:8000/build/angular',
'/': 'http://localhost:8000/build/docs/'
};

junitReporter = {
outputFile: 'test_out/e2e.xml',
suite: 'E2E'
};
7 changes: 6 additions & 1 deletion testacular-jqlite.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
};
7 changes: 6 additions & 1 deletion testacular-jquery.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
};
7 changes: 6 additions & 1 deletion testacular-modules.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
};

0 comments on commit a5d434d

Please sign in to comment.