wdio-teamcity-reporter
Advanced tools
Comparing version 0.0.1 to 0.0.2
84
index.js
@@ -27,12 +27,12 @@ const inherits = require('util').inherits; | ||
/** | ||
* @param {object} suite | ||
* @param {string} suite.type | ||
* @param {string} suite.title | ||
* @param {string} suite.parent | ||
* @param {boolean} suite.pending | ||
* @param {string} suite.file | ||
* @param {string[]} suite.specs | ||
* @param {string} suite.event | ||
* @param {object} suite.runner | ||
* @param {string} suite.specHash | ||
* @param {object} test | ||
* @param {string} test.type | ||
* @param {string} test.title | ||
* @param {string} test.parent | ||
* @param {boolean} test.pending | ||
* @param {string} test.file | ||
* @param {string[]} test.specs | ||
* @param {string} test.event | ||
* @param {object} test.runner | ||
* @param {string} test.specHash | ||
*/ | ||
@@ -44,12 +44,12 @@ this.on('test:start', test => { | ||
/** | ||
* @param {object} suite | ||
* @param {string} suite.type | ||
* @param {string} suite.title | ||
* @param {string} suite.parent | ||
* @param {boolean} suite.pending | ||
* @param {string} suite.file | ||
* @param {string[]} suite.specs | ||
* @param {string} suite.event | ||
* @param {object} suite.runner | ||
* @param {string} suite.specHash | ||
* @param {object} test | ||
* @param {string} test.type | ||
* @param {string} test.title | ||
* @param {string} test.parent | ||
* @param {boolean} test.pending | ||
* @param {string} test.file | ||
* @param {string[]} test.specs | ||
* @param {string} test.event | ||
* @param {object} test.runner | ||
* @param {string} test.specHash | ||
*/ | ||
@@ -61,29 +61,29 @@ this.on('test:end', test => { | ||
/** | ||
* @param {object} suite | ||
* @param {string} suite.type | ||
* @param {object} suite.err | ||
* @param {string} suite.title | ||
* @param {string} suite.parent | ||
* @param {boolean} suite.pending | ||
* @param {string} suite.file | ||
* @param {string[]} suite.specs | ||
* @param {string} suite.event | ||
* @param {object} suite.runner | ||
* @param {string} suite.specHash | ||
* @param {object} test | ||
* @param {string} test.type | ||
* @param {object} test.err | ||
* @param {string} test.title | ||
* @param {string} test.parent | ||
* @param {boolean} test.pending | ||
* @param {string} test.file | ||
* @param {string[]} test.specs | ||
* @param {string} test.event | ||
* @param {object} test.runner | ||
* @param {string} test.specHash | ||
*/ | ||
this.on('test:fail', test => { | ||
console.log(`##teamcity[testFailed name='${escape(test.title)}' message='${escape(suite.err.message)}' captureStandardOutput='true' details='${escape(suite.err.stack)}']`); | ||
console.log(`##teamcity[testFailed name='${escape(test.title)}' message='${escape(test.err.message)}' captureStandardOutput='true' details='${escape(test.err.stack)}']`); | ||
}); | ||
/** | ||
* @param {object} suite | ||
* @param {string} suite.type | ||
* @param {string} suite.title | ||
* @param {string} suite.parent | ||
* @param {boolean} suite.pending | ||
* @param {string} suite.file | ||
* @param {string[]} suite.specs | ||
* @param {string} suite.event | ||
* @param {object} suite.runner | ||
* @param {string} suite.specHash | ||
* @param {object} test | ||
* @param {string} test.type | ||
* @param {string} test.title | ||
* @param {string} test.parent | ||
* @param {boolean} test.pending | ||
* @param {string} test.file | ||
* @param {string[]} test.specs | ||
* @param {string} test.event | ||
* @param {object} test.runner | ||
* @param {string} test.specHash | ||
*/ | ||
@@ -90,0 +90,0 @@ this.on('test:pending', test => { |
{ | ||
"name": "wdio-teamcity-reporter", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Teamcity reporter for WebdriverIO", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
0
5966