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

json-reporter

Package Overview
Dependencies
Maintainers
6
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-reporter - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="0.1.2"></a>
## [0.1.2](https://github.com/gemini-testing/json-reporter/compare/v0.1.1...v0.1.2) (2017-03-17)
### Bug Fixes
* not attach url in hermione test if it doesn't exists ([39acdf0](https://github.com/gemini-testing/json-reporter/commit/39acdf0))
<a name="0.1.1"></a>

@@ -7,0 +17,0 @@ ## [0.1.1](https://github.com/gemini-testing/json-reporter/compare/v0.1.0...v0.1.1) (2017-03-15)

14

lib/collector/hermione.js

@@ -11,10 +11,14 @@ 'use strict';

const filePath = getFilePath(result) || '';
const metaUrl = _.get(result, 'meta.url', '');
return {
const testResult = {
fullName: result.fullTitle(),
browserId: result.browserId,
file: utils.getRelativePath(filePath),
url: url.parse(metaUrl).path
file: utils.getRelativePath(filePath)
};
const metaUrl = _.get(result, 'meta.url', '');
if (!_.isEmpty(metaUrl)) {
testResult.url = url.parse(metaUrl).path;
}
return testResult;
};

@@ -21,0 +25,0 @@

{
"name": "json-reporter",
"version": "0.1.1",
"version": "0.1.2",
"description": "Common plugin for gemini and hermione which is intended to aggregate the results of tests running",

@@ -5,0 +5,0 @@ "main": "gemini.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