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

testable-utils

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

testable-utils - npm Package Compare versions

Comparing version 0.3.4 to 0.3.6

7

lib/wdio-commands.js
const _ = require('lodash');
const pathModule = require('path');

@@ -124,4 +125,6 @@ function isWdioContext(browser) {

const id = info.region.name + '-' + info.regionalClientIndex + '-' + info.iteration;
const dir = (process.env.OUTPUT_DIR || '.') + '/';
browser.saveScreenshot(dir + (isLocal ? '' : id + '-') + name + '.png');
const dir = process.env.OUTPUT_DIR || '.';
const path = pathModule.join(dir, (isLocal ? '' : id + '-') + name + '.png');
browser.saveScreenshot(path);
return path;
});

@@ -128,0 +131,0 @@ }

{
"name": "testable-utils",
"version": "0.3.4",
"version": "0.3.6",
"description": "Utilities for Testable scripts",

@@ -5,0 +5,0 @@ "author": "Avi Stramer",

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