@bigbinary/neeto-playwright-commons 2.2.3 → 2.2.5
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/index.cjs.js +1 -1
- package/index.cjs.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -5973,7 +5973,7 @@ class CustomCommands {
|
|
|
5973
5973
|
await customPageContext.evaluate(button => {
|
|
5974
5974
|
button.dispatchEvent(new Event("click", { bubbles: true }));
|
|
5975
5975
|
}, buttonHandle);
|
|
5976
|
-
await test.expect(toastrCloseButton).toBeHidden();
|
|
5976
|
+
await test.expect(toastrCloseButton).toBeHidden({ timeout: 10_000 });
|
|
5977
5977
|
}
|
|
5978
5978
|
};
|
|
5979
5979
|
waitForPageLoad = async ({ visibilityTimeout = 35_000, customPageContext = this.page, waitForOption = "serial", } = {}) => {
|