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

@wdio/utils

Package Overview
Dependencies
Maintainers
3
Versions
298
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wdio/utils - npm Package Compare versions

Comparing version 8.16.12 to 8.16.14

6

build/driver/utils.js

@@ -42,3 +42,7 @@ import os from 'node:os';

const versionString = cp.execSync(`"${chromePath}" --version --no-sandbox`).toString();
return versionString.trim().split(' ').pop()?.trim();
const versionSanitized = versionString.trim().split(' ').find((s) => s.split('.').length === 4);
if (!versionSanitized) {
throw new Error(`Couldn't find valid Chrome version from "${versionString}", please raise an issue in the WebdriverIO project (https://github.com/webdriverio/webdriverio/issues/new/choose)`);
}
return versionSanitized;
}

@@ -45,0 +49,0 @@ export async function getBuildIdByFirefoxPath(firefoxPath) {

4

package.json
{
"name": "@wdio/utils",
"version": "8.16.12",
"version": "8.16.14",
"description": "A WDIO helper utility to provide several utility functions used across the project.",

@@ -51,3 +51,3 @@ "author": "Christian Bromann <mail@bromann.dev>",

},
"gitHead": "6a010586db579a5019b490172f8ffc3939c9e852"
"gitHead": "b74f21bcf2a05efbf3c23a67e20bcb63db2620b6"
}

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