Browse Source

fix: missing routine invocation

pull/5537/head
Raju Udava 1 year ago
parent
commit
81edc6b1ef
  1. 4
      tests/playwright/tests/db/accountUserSettings.spec.ts
  2. 4
      tests/playwright/tests/db/viewForm.spec.ts

4
tests/playwright/tests/db/accountUserSettings.spec.ts

@ -25,8 +25,6 @@ test.describe('App settings', () => {
// todo: remove after route navigation issue resolved
await accountSettingsPage.rootPage.reload({ waitUntil: 'networkidle' });
await accountSettingsPage.waitUntilContentLoads();
// enable invite only signup
if (!(await accountSettingsPage.getInviteOnlyCheckboxValue())) {
await accountSettingsPage.toggleInviteOnlyCheckbox();
@ -48,8 +46,6 @@ test.describe('App settings', () => {
await accountSettingsPage.goto();
await accountSettingsPage.waitUntilContentLoads();
await accountSettingsPage.checkInviteOnlySignupCheckbox(true);
await accountSettingsPage.toggleInviteOnlyCheckbox();
await accountSettingsPage.checkInviteOnlySignupCheckbox(false);

4
tests/playwright/tests/db/viewForm.spec.ts

@ -177,8 +177,6 @@ test.describe('Form view', () => {
// activate SMTP plugin
await accountAppStorePage.goto();
await accountAppStorePage.rootPage.reload({ waitUntil: 'networkidle' });
await accountAppStorePage.waitUntilContentLoads();
// install SMTP
await accountAppStorePage.install({ name: 'SMTP' });
@ -205,8 +203,6 @@ test.describe('Form view', () => {
// Uninstall SMTP
await accountAppStorePage.goto();
await accountAppStorePage.rootPage.reload({ waitUntil: 'networkidle' });
await accountAppStorePage.waitUntilContentLoads();
await accountAppStorePage.uninstall({ name: 'SMTP' });
await dashboard.verifyToast({

Loading…
Cancel
Save