@wdio/utils
Advanced tools
Comparing version 8.15.7 to 8.15.8
@@ -42,3 +42,3 @@ import os from 'node:os'; | ||
} | ||
else if (os.platform() === 'win32') { | ||
if (os.platform() === 'win32') { | ||
const versionPath = path.dirname(chromePath); | ||
@@ -52,3 +52,3 @@ const contents = fs.readdirSync(versionPath); | ||
const versionString = cp.execSync(`"${chromePath}" --version`).toString(); | ||
return versionString.split(' ').pop()?.trim(); | ||
return versionString.trim().split(' ').pop()?.trim(); | ||
} | ||
@@ -55,0 +55,0 @@ let lastTimeCalled = Date.now(); |
{ | ||
"name": "@wdio/utils", | ||
"version": "8.15.7", | ||
"version": "8.15.8", | ||
"description": "A WDIO helper utility to provide several utility functions used across the project.", | ||
@@ -50,3 +50,3 @@ "author": "Christian Bromann <mail@bromann.dev>", | ||
}, | ||
"gitHead": "24d8f0dccf54e6e19779094d73eb90ae9086ee86" | ||
"gitHead": "ed14f208c4a88e2caae4e001c642ee9272fac52c" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
144195