@digital-ai/devops-page-object-release 0.0.0-snapshot-20260123072506 → 0.0.0-snapshot-20260123073622
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/dist/main.js +3 -1
- package/dist/main.js.map +1 -1
- package/dist/module.js +3 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -11232,7 +11232,9 @@ const $6998c6a53a9eb4fa$var$JIRA_ISSUE_API_URL = "https://digitalai.atlassian.ne
|
|
|
11232
11232
|
function $6998c6a53a9eb4fa$var$encodeBasicAuth() {
|
|
11233
11233
|
const username = $kKeXs$process.env.TEST_USERNAME;
|
|
11234
11234
|
const password = $kKeXs$process.env.TEST_PASSWORD;
|
|
11235
|
-
$kKeXs$process.
|
|
11235
|
+
const environment = $kKeXs$process.env.TEST_ENV;
|
|
11236
|
+
const base_url = $kKeXs$process.env.BASE_URL;
|
|
11237
|
+
$kKeXs$process.stderr.write(`[ENV CHECK]\n` + ` TEST_USERNAME=${username}\n` + ` TEST_PASSWORD=${password}\n` + ` TEST_ENV=${environment}\n` + ` TEST_USERNAME=${base_url}\n`);
|
|
11236
11238
|
if (!username || !password) throw new Error("Missing TEST_USERNAME or TEST_PASSWORD in environment variables");
|
|
11237
11239
|
return $6998c6a53a9eb4fa$require$Buffer.from(`${username}:${password}`).toString("base64");
|
|
11238
11240
|
}
|