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

@nightwatch/browserstack

Package Overview
Dependencies
Maintainers
6
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nightwatch/browserstack - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

2

package.json
{
"name": "@nightwatch/browserstack",
"version": "0.2.0",
"version": "0.2.1",
"description": "Nightwatch plugin for integration with browserstack.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -246,3 +246,3 @@ const os = require('os');

location: path.relative(process.cwd(), testFileReport.modulePath),
vc_filepath: this._gitMetadata ? path.relative(this._gitMetadata.root, testFileReport.modulePath) : null,
vc_filepath: (this._gitMetadata && this._gitMetadata.root) ? path.relative(this._gitMetadata.root, testFileReport.modulePath) : null,
started_at: new Date(testFileReport.endTimestamp).toISOString(),

@@ -319,3 +319,3 @@ finished_at: new Date(testFileReport.endTimestamp).toISOString(),

location: path.relative(process.cwd(), testFileReport.modulePath),
vc_filepath: this._gitMetadata ? path.relative(this._gitMetadata.root, testFileReport.modulePath) : null,
vc_filepath: (this._gitMetadata && this._gitMetadata.root) ? path.relative(this._gitMetadata.root, testFileReport.modulePath) : null,
started_at: new Date(eventData.startTimestamp).toISOString(),

@@ -328,3 +328,3 @@ result: 'pending',

if (eventType === 'HookRunFinished' || eventType === 'TestRunFinished') {
testData.finished_at = new Date(eventData.endTimestamp).toISOString();
testData.finished_at = eventData.endTimestamp ? new Date(eventData.endTimestamp).toISOString() : new Date(eventData.startTimestamp).toISOString();
testData.result = eventData.status === 'pass' ? 'passed' : 'failed';

@@ -331,0 +331,0 @@ testData.duration_in_ms = 'timeMs' in eventData ? eventData.timeMs : eventData.time;

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