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

@illinois/zephyr-catch-grader

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@illinois/zephyr-catch-grader - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

LICENSE.md

24

lib/process-catch-result.js

@@ -24,13 +24,2 @@ "use strict";

};
} else if (result.tags.valgrind) {
// Record `valgrind` output:
return {
name: result.name,
tags: result.tags,
success: result.exitCode === 0,
weight: result.tags.weight,
earned: result.exitCode === 0 ? result.tags.weight : 0,
output: result.stdout,
message: result.stderr
};
} else if (result.error) {

@@ -53,5 +42,14 @@ var error;

earned: 0,
output: error,
message: result.stderr
output: error
};
} else if (result.tags.valgrind) {
// Record `valgrind` output:
return {
name: result.name,
tags: result.tags,
success: result.exitCode === 0,
weight: result.tags.weight,
earned: result.exitCode === 0 ? result.tags.weight : 0,
output: result.stderr
};
} else {

@@ -58,0 +56,0 @@ var testCase = (0, _processCatchXml.default)(result);

{
"name": "@illinois/zephyr-catch-grader",
"version": "1.0.5",
"version": "1.0.6",
"description": "A Zephyr grader for a Catch test suite",

@@ -15,3 +15,4 @@ "main": "./lib/index.js",

"build:watch": "npm run build -- --watch",
"type-check": "tsc --noEmit"
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run test && npm run build"
},

@@ -27,3 +28,3 @@ "keywords": [

"@babel/runtime": "^7.0.0",
"@illinois/zephyr-grader-base": "^1.0.5",
"@illinois/zephyr-grader-base": "^1.0.6",
"babel-polyfill": "^6.26.0",

@@ -70,3 +71,4 @@ "deasync": "^0.1.13",

]
}
},
"gitHead": "82fa514b2aeb27c96e40a3d04d13a7c7e260b68c"
}
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