@digital-ai/devops-page-object-release 0.0.0-snapshot-20250922111535 → 0.0.0-snapshot-20250922113606
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 +13 -1
- package/dist/main.js +5 -7
- package/dist/main.js.map +1 -1
- package/dist/module.js +5 -7
- 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/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
# @digital-ai/devops-page-object-release
|
|
2
2
|
|
|
3
|
-
## 0.0.0-snapshot-
|
|
3
|
+
## 0.0.0-snapshot-20250922113606
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- a8cea82: S-119622: Update filter drawer selector
|
|
8
8
|
|
|
9
|
+
## 0.0.82
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- cc803a3: S-124769: Delivery-pattern-scenario: Made an argument as optional in a method
|
|
14
|
+
|
|
15
|
+
## 0.0.81
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- f1da164: S-124769: Update delivery patterns
|
|
20
|
+
|
|
9
21
|
## 0.0.80
|
|
10
22
|
|
|
11
23
|
### Patch Changes
|
package/dist/main.js
CHANGED
|
@@ -5529,7 +5529,7 @@ class $ceb2e9e08e1837c2$export$9b9454a7f137e99b extends (0, $f8721861c660dd88$ex
|
|
|
5529
5529
|
await this.clickNewDeliveryPattern();
|
|
5530
5530
|
await this.setPatternName(patternName);
|
|
5531
5531
|
await this.setPatternDescription(patternDescription);
|
|
5532
|
-
await this.setDuration(duration);
|
|
5532
|
+
if (duration) await this.setDuration(duration);
|
|
5533
5533
|
await (0, $kKeXs$playwrighttest.expect)(this.page.locator(".action-toolbar-actions button").filter({
|
|
5534
5534
|
hasText: "Create"
|
|
5535
5535
|
})).toBeEnabled();
|
|
@@ -5626,16 +5626,14 @@ class $ceb2e9e08e1837c2$export$9b9454a7f137e99b extends (0, $f8721861c660dd88$ex
|
|
|
5626
5626
|
})).not.toBeVisible();
|
|
5627
5627
|
}
|
|
5628
5628
|
async expectPatternIsVisible(patternName) {
|
|
5629
|
-
|
|
5629
|
+
await (0, $kKeXs$playwrighttest.expect)(this.page.locator(".delivery-pattern-row").filter({
|
|
5630
5630
|
hasText: patternName
|
|
5631
|
-
});
|
|
5632
|
-
await (0, $kKeXs$playwrighttest.expect)(locator).toBeVisible(); // assertion with auto-wait
|
|
5631
|
+
})).toBeVisible();
|
|
5633
5632
|
}
|
|
5634
5633
|
async expectPatternIsNotVisible(patternName) {
|
|
5635
|
-
|
|
5634
|
+
await (0, $kKeXs$playwrighttest.expect)(this.page.locator(".delivery-pattern-row").filter({
|
|
5636
5635
|
hasText: patternName
|
|
5637
|
-
});
|
|
5638
|
-
await (0, $kKeXs$playwrighttest.expect)(locator).toBeHidden(); // assertion with auto-wait
|
|
5636
|
+
})).toBeHidden();
|
|
5639
5637
|
}
|
|
5640
5638
|
noPatternsMessageIsVisible() {
|
|
5641
5639
|
return (0, $kKeXs$playwrighttest.expect)(this.page.getByText("No delivery patterns found")).toBeVisible();
|