New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-trx

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-trx - npm Package Compare versions

Comparing version 0.2.0 to 0.3.0

4

formatter.js

@@ -22,2 +22,6 @@

el = xml.ele('TestSettings')
.att('name', testRun.testSettings.name)
.att('id', testRun.testSettings.id);
el = xml.ele('ResultSummary')

@@ -24,0 +28,0 @@ .att('outcome', testRun.counters.failed > 0 ? 'Failed' : 'Completed')

2

package.json
{
"name": "node-trx",
"version": "0.2.0",
"version": "0.3.0",
"description": "File generator utility for TRX file format for use with Visual Studio and MSBuild",

@@ -5,0 +5,0 @@ "keywords": [

@@ -19,2 +19,11 @@ var uuid = require('node-uuid')

}
if(params.testSettings) {
this.testSettings = new TestSettings(params.testSettings);
} else {
this.testSettings = new TestSettings({
id: 'ce1a4cfb-64fa-4d63-8815-e9984737a62c',
name: 'Default Test Settings'
});
}

@@ -152,3 +161,16 @@ this.testDefinitions = [];

/**
* A TestSetting as defined by the XSD type `TestSettingsType`
*
* @param {object} params
* @config {string} name - name of the test settings
* @config {string} id - guid identifier
*/
function TestSettings(params) {
this.id = params.id;
this.name = params.name;
}
/**

@@ -155,0 +177,0 @@ * A TestList as defined by the XSD type `TestListType`

Sorry, the diff of this file is not supported yet

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