@bigbinary/neeto-playwright-commons 1.13.14 → 1.13.15

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 CHANGED
@@ -24924,7 +24924,7 @@ class OrganizationPage {
24924
24924
  const isNeetoAuth = appNameInLowerCase === "neetoauth";
24925
24925
  isNeetoAuth
24926
24926
  ? await this.page.goto(ROUTES.neetoAuthSignup, { timeout: 20000 })
24927
- : await this.page.goto(`${ROUTES.neetoAuthSignup}?redirect_uri=${appNameInLowerCase}.net`, { timeout: 20000 });
24927
+ : await this.page.goto(`${ROUTES.neetoAuthSignup}?redirect_uri=${appNameInLowerCase}.net/admin`, { timeout: 20000 });
24928
24928
  await this.page.getByTestId(SIGNUP_SELECTORS.emailTextField).fill(email);
24929
24929
  const signup = this.neetoPlaywrightUtilities.interceptMultipleResponses({
24930
24930
  responseUrl: ROUTES.signup,
@@ -25019,7 +25019,6 @@ class OrganizationPage {
25019
25019
  const unregisteredEmailError = this.page.getByTestId(SIGNUP_SELECTORS.unregisterdEmailError);
25020
25020
  await test$1.expect(async () => {
25021
25021
  await this.page.getByTestId(LOGIN_SELECTORS.submitButton).click();
25022
- await test$1.expect(unregisteredEmailError).toBeHidden();
25023
25022
  await this.neetoPlaywrightUtilities.waitForPageLoad();
25024
25023
  await test$1.expect(unregisteredEmailError).toBeHidden();
25025
25024
  }).toPass({ timeout: loginTimeout });