@digital-ai/devops-page-object-release 0.0.0-snapshot-20260116055025 → 0.0.0-snapshot-20260119092519
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 +6 -1
- package/dist/main.js.map +1 -1
- package/dist/module.js +7 -2
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -2,7 +2,7 @@ import {Buffer as $hOLA6$Buffer} from "buffer";
|
|
|
2
2
|
import {test as $hOLA6$test, expect as $hOLA6$expect} from "@playwright/test";
|
|
3
3
|
import {execFile as $hOLA6$execFile} from "child_process";
|
|
4
4
|
import $hOLA6$lodashisNil from "lodash/isNil";
|
|
5
|
-
import {env as $hOLA6$env} from "process";
|
|
5
|
+
import {env as $hOLA6$env, stdout as $hOLA6$stdout} from "process";
|
|
6
6
|
import $hOLA6$moment from "moment";
|
|
7
7
|
import {promises as $hOLA6$promises} from "fs";
|
|
8
8
|
import $hOLA6$lodashisUndefined from "lodash/isUndefined";
|
|
@@ -9384,13 +9384,18 @@ class $e72552cbf941ecfa$export$b8a61e5c71402559 {
|
|
|
9384
9384
|
|
|
9385
9385
|
|
|
9386
9386
|
|
|
9387
|
+
|
|
9387
9388
|
class $4444bee76761dfb1$export$f14c0e3f98d164c0 extends (0, $9626bc9256ce31f7$export$2b65d1d97338f32b) {
|
|
9388
9389
|
/**
|
|
9389
9390
|
* Login with username and password
|
|
9390
9391
|
* @param userName
|
|
9391
9392
|
* @param password
|
|
9392
9393
|
* @param baseUrl
|
|
9393
|
-
*/ async login(userName, password
|
|
9394
|
+
*/ async login(userName, password) {
|
|
9395
|
+
const baseUrl = undefined;
|
|
9396
|
+
$hOLA6$stdout.write(`[ENV] TEST_ENV=${undefined}\n`);
|
|
9397
|
+
$hOLA6$stdout.write(`[ENV] BASE_URL=${undefined}\n`);
|
|
9398
|
+
$hOLA6$stdout.write(`[ENV] TEST_USERNAME=${undefined}\n`);
|
|
9394
9399
|
if (!baseUrl || !userName || !password) throw new Error("Missing BASE_URL or TEST_USERNAME or TEST_PASSWORD in environment variables");
|
|
9395
9400
|
await this.page.goto(baseUrl, {
|
|
9396
9401
|
waitUntil: "domcontentloaded"
|