8000 test: skip expand modes in OSS by dstala · Pull Request #11360 · nocodb/nocodb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

test: skip expand modes in OSS #11360

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ export class UserOptionCellPageObject extends BasePage {

await this.rootPage.locator('.nc-dropdown-user-select-cell.active').waitFor({ state: 'visible' });

// add 500ms wait to ensure dropdown is open
await this.rootPage.waitForTimeout(100);

if (index === -1) {
const selectOption = this.rootPage.getByTestId(`select-option-${columnHeader}-undefined`).getByText(option);
await selectOption.scrollIntoViewIfNeeded();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import { expect, test } from '@playwright/test';
import { DashboardPage } from '../../../pages/Dashboard';
import setup, { unsetup } from '../../../setup';
import { isEE } from '../../../setup/db';

test.describe('Expanded form files mode', () => {
// skip if not EE
if (!isEE()) {
test.skip();
}

let dashboard: DashboardPage;
let context: any;

Expand Down
Loading
0