@bigbinary/neeto-playwright-commons 1.11.17 → 1.11.19
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/configs/eslint/common.js +2 -0
- package/index.cjs.js +2 -2
- package/index.cjs.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/configs/eslint/common.js
CHANGED
|
@@ -32,6 +32,8 @@ const commonEslintConfig = ({
|
|
|
32
32
|
},
|
|
33
33
|
plugins: ["@typescript-eslint", "import"],
|
|
34
34
|
rules: {
|
|
35
|
+
"@bigbinary/neeto/use-dayjs-from-neeto-commons-fronted": "off",
|
|
36
|
+
"@bigbinary/neeto/use-array-methods": "off",
|
|
35
37
|
"@typescript-eslint/no-floating-promises": "error",
|
|
36
38
|
"no-unused-vars": "off",
|
|
37
39
|
"@typescript-eslint/no-unused-vars": ["error"],
|
package/index.cjs.js
CHANGED
|
@@ -16436,7 +16436,7 @@ class TeamMembers {
|
|
|
16436
16436
|
await this.page.getByTestId(MEMBER_SELECTORS.submitButton).click();
|
|
16437
16437
|
// eslint-disable-next-line playwright/no-standalone-expect
|
|
16438
16438
|
await test$1.expect(this.page.getByTestId(COMMON_SELECTORS.paneBody)).toBeHidden();
|
|
16439
|
-
}).toPass({ timeout:
|
|
16439
|
+
}).toPass({ timeout: 40000 });
|
|
16440
16440
|
await this.neetoPlaywrightUtilities.waitForPageLoad();
|
|
16441
16441
|
await this.neetoPlaywrightUtilities.verifyToast();
|
|
16442
16442
|
};
|
|
@@ -16794,7 +16794,7 @@ class OrganizationPage {
|
|
|
16794
16794
|
});
|
|
16795
16795
|
await this.page.getByTestId(SIGNUP_SELECTORS.profileSubmitButton).click();
|
|
16796
16796
|
await submitProfile;
|
|
16797
|
-
await test$1.expect(this.page.getByTestId(COMMON_SELECTORS.pageLoader)).toBeHidden();
|
|
16797
|
+
await test$1.expect(this.page.getByTestId(COMMON_SELECTORS.pageLoader)).toBeHidden({ timeout: 15000 });
|
|
16798
16798
|
};
|
|
16799
16799
|
this.loginAndOnboard = async ({ email, firstName, lastName, country, handleOnboarding, baseURL = process.env.BASE_URL, }) => {
|
|
16800
16800
|
await this.page.goto(`${baseURL}/${ROUTES.admin}`);
|