gemini-teamcity
Advanced tools
Comparing version 2.1.3 to 2.1.4
@@ -24,3 +24,3 @@ var tsm = require('teamcity-service-messages'); | ||
runner.on('endTest', function(data) { | ||
runner.on('endState', function(data) { | ||
var testName = getTestName(data); | ||
@@ -27,0 +27,0 @@ |
{ | ||
"name": "gemini-teamcity", | ||
"version": "2.1.3", | ||
"version": "2.1.4", | ||
"description": "Plugin for Gemini which enables reporting test results to TeamCity.", | ||
@@ -5,0 +5,0 @@ "main": "lib/plugin.js", |
# gemini-teamcity | ||
Plugin for Gemini which enables reporting test results to TeamCity. | ||
[![Build Status](https://travis-ci.org/Saulis/gemini-teamcity.svg?branch=master)](https://travis-ci.org/Saulis/gemini-teamcity) | ||
[![Build Status](https://travis-ci.org/gemini-testing/gemini-teamcity.svg?branch=master)](https://travis-ci.org/gemini-testing/gemini-teamcity) | ||
@@ -6,0 +6,0 @@ ## Requirements |
@@ -81,7 +81,7 @@ var EventEmitter = require('events').EventEmitter; | ||
describe('on endTest', function() { | ||
testArgs_('endTest', 'testFinished'); | ||
describe('on endState', function() { | ||
testArgs_('endState', 'testFinished'); | ||
describe('Test is failed', function() { | ||
testArgs_('endTest', 'testFailed', {equal: false}); | ||
testArgs_('endState', 'testFailed', {equal: false}); | ||
}); | ||
@@ -141,4 +141,4 @@ }); | ||
it('should not fail already finished suite states', function() { | ||
runner.emit('endTest', _.defaults({state: state1}, data)); | ||
runner.emit('endTest', _.defaults({state: state2, equal: false}, data)); | ||
runner.emit('endState', _.defaults({state: state1}, data)); | ||
runner.emit('endState', _.defaults({state: state2, equal: false}, data)); | ||
@@ -145,0 +145,0 @@ runner.emit('err', data); |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
22236
11