wdio-junit-reporter
Advanced tools
Comparing version 5.0.0-alpha.14 to 5.0.0-beta.0
{ | ||
"name": "wdio-junit-reporter", | ||
"version": "5.0.0-alpha.14", | ||
"version": "5.0.0-beta.0", | ||
"description": "A WebdriverIO reporter that creates Jenkins compatible XML based JUnit reports", | ||
@@ -5,0 +5,0 @@ "author": "Christian Bromann <christian@saucelabs.com>", |
@@ -35,5 +35,5 @@ WebdriverIO XML Reporter | ||
// ... | ||
reporters: ['dot', 'junit'], | ||
reporterOptions: { | ||
junit: { | ||
reporters: [ | ||
'dot', | ||
['junit', { | ||
outputDir: './', | ||
@@ -43,4 +43,4 @@ outputFileFormat: function(opts) { // optional | ||
} | ||
} | ||
}, | ||
}] | ||
], | ||
// ... | ||
@@ -97,9 +97,9 @@ }; | ||
// ... | ||
reporters: ['dot', 'junit'], | ||
reporterOptions: { | ||
junit: { | ||
reporters: [ | ||
'dot', | ||
['junit', { | ||
outputDir: './', | ||
packageName: process.env.USER_ROLE // chrome.41 - administrator | ||
} | ||
} | ||
}] | ||
] | ||
// ... | ||
@@ -135,5 +135,5 @@ }; | ||
// ... | ||
reporters: ['dot', 'junit'], | ||
reporterOptions: { | ||
junit: { | ||
reporters: [ | ||
'dot', | ||
['junit', { | ||
outputDir: './', | ||
@@ -145,4 +145,4 @@ errorOptions: { | ||
} | ||
} | ||
} | ||
}] | ||
], | ||
// ... | ||
@@ -149,0 +149,0 @@ }; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16281