@digital-ai/devops-page-object-release 0.0.81 → 0.0.82

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
+ ## 0.0.82
4
+
5
+ ### Patch Changes
6
+
7
+ - cc803a3: S-124769: Delivery-pattern-scenario: Made an argument as optional in a method
8
+
3
9
  ## 0.0.81
4
10
 
5
11
  ### 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();