Browse Source

test: disable org user tests in EE

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

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

@ -7,6 +7,7 @@ import { getDefaultPwd } from '../../../tests/utils/general';
import { Api } from 'nocodb-sdk';
import { DashboardPage } from '../../../pages/Dashboard';
import { LoginPage } from '../../../pages/LoginPage';
import { isEE } from '../../../setup/db';
let api: Api<any>;
const roleDb = [
@ -24,6 +25,11 @@ 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