@qawolf/config
Advanced tools
Comparing version 0.8.0-alpha.1 to 0.8.1-alpha.0
export declare const CONFIG: { | ||
artifactPath: string | undefined; | ||
attribute: string | null; | ||
attribute: string; | ||
chromeOffsetX: number; | ||
@@ -5,0 +5,0 @@ chromeOffsetY: number; |
@@ -25,3 +25,3 @@ "use strict"; | ||
artifactPath, | ||
attribute: process.env.QAW_ATTRIBUTE || null, | ||
attribute: process.env.QAW_ATTRIBUTE || "data-qa,data-test,data-testid", | ||
chromeOffsetX: parseNumber(process.env.QAW_CHROME_OFFSET_X, 0), | ||
@@ -28,0 +28,0 @@ chromeOffsetY: parseNumber(process.env.QAW_CHROME_OFFSET_Y, 125), |
{ | ||
"name": "@qawolf/config", | ||
"description": "qawolf config (node only)", | ||
"version": "0.8.0-alpha.1", | ||
"version": "0.8.1-alpha.0", | ||
"license": "BSD-3.0", | ||
@@ -29,3 +29,3 @@ "main": "./lib/index.js", | ||
}, | ||
"gitHead": "4780e65c827da7413bbbfe85201edf28d907a32e" | ||
"gitHead": "ab482e44e8d54de11ac3f7e33f862a14d04908f8" | ||
} |
@@ -28,3 +28,3 @@ import { config as configDotenv } from "dotenv"; | ||
artifactPath, | ||
attribute: process.env.QAW_ATTRIBUTE || null, | ||
attribute: process.env.QAW_ATTRIBUTE || "data-qa,data-test,data-testid", | ||
chromeOffsetX: parseNumber(process.env.QAW_CHROME_OFFSET_X, 0), | ||
@@ -31,0 +31,0 @@ chromeOffsetY: parseNumber(process.env.QAW_CHROME_OFFSET_Y, 125), |
Sorry, the diff of this file is not supported yet
7938