Browse Source

test: sync (EE fix)

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/6315/head
Raju Udava 12 months ago
parent
commit
6506a3864b
  1. 10
      tests/playwright/tests/db/usersAccounts/accountUserManagement.spec.ts

10
tests/playwright/tests/db/usersAccounts/accountUserManagement.spec.ts

@ -16,6 +16,11 @@ const roleDb = [
];
test.describe('User roles', () => {
// Org level roles are not available in EE
if (isEE()) {
test.skip();
}
let accountUsersPage: AccountUsersPage;
let accountPage: AccountPage;
let signupPage: SignupPage;
@ -25,11 +30,6 @@ test.describe('User roles', () => {
let context: any;
test.beforeEach(async ({ page }) => {
// Org level roles are not available in EE
if (isEE()) {
test.skip();
}
context = await setup({ page, isEmptyProject: true, isSuperUser: true });
dashboard = new DashboardPage(page, context.project);
accountPage = new AccountPage(page);

Loading…
Cancel
Save