@qawolf/config
Advanced tools
Comparing version 0.5.12 to 0.5.14
@@ -16,3 +16,3 @@ export declare const CONFIG: { | ||
logPath: string | undefined; | ||
navigationTimeout: number; | ||
navigationTimeoutMs: number; | ||
serial: boolean; | ||
@@ -19,0 +19,0 @@ sleepMs: number; |
@@ -33,3 +33,3 @@ "use strict"; | ||
logPath: process.env.QAW_LOG_PATH, | ||
navigationTimeout: parseNumber(process.env.QAW_NAVIGATION_TIMEOUT, 60000), | ||
navigationTimeoutMs: parseNumber(process.env.QAW_NAVIGATION_TIMEOUT_MS, 60000), | ||
serial: parseBool(process.env.QAW_SERIAL), | ||
@@ -36,0 +36,0 @@ sleepMs: parseNumber(process.env.QAW_SLEEP_MS, 1000), |
{ | ||
"name": "@qawolf/config", | ||
"description": "qawolf config (node only)", | ||
"version": "0.5.12", | ||
"version": "0.5.14", | ||
"license": "BSD-3.0", | ||
@@ -29,3 +29,3 @@ "main": "./lib/index.js", | ||
}, | ||
"gitHead": "f4ac1245b88c32309fa357e627185b33cfd861d3" | ||
"gitHead": "cb40ac9ea6354977f96a234a0557381fab20bc53" | ||
} |
@@ -33,3 +33,6 @@ import dotenv from "dotenv"; | ||
logPath: process.env.QAW_LOG_PATH, | ||
navigationTimeout: parseNumber(process.env.QAW_NAVIGATION_TIMEOUT, 60000), | ||
navigationTimeoutMs: parseNumber( | ||
process.env.QAW_NAVIGATION_TIMEOUT_MS, | ||
60000 | ||
), | ||
serial: parseBool(process.env.QAW_SERIAL), | ||
@@ -36,0 +39,0 @@ // slow down each step by 1s to make it watchable |
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
8952
122