Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wdio-teamcity-reporter

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wdio-teamcity-reporter - npm Package Compare versions

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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc