Skip to content
Open
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
2 changes: 1 addition & 1 deletion openmetadata-ui/src/main/resources/ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ When writing new tests, follow these guidelines:
Example test structure:

```typescript
import { test, expect } from '@playwright/test';
import { test, expect } from '../../support/fixtures/base';
import { LoginPage } from '../Pages/LoginPage';

test.describe('Feature Name', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ test.describe.configure({ timeout: 300000 });
Use this structure for all generated tests:

```typescript
import { test, expect } from "@playwright/test";
import { test, expect } from "../../support/fixtures/base";
import { performAdminLogin } from "../../utils/admin";
import { redirectToHomePage } from "../../utils/common";
import { sidebarClick } from "../../utils/sidebar";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pass fails and the offending facet is named in the assertion message.
## Adding a new entity

```ts
import { test } from '@playwright/test';
import { test } from '../../../support/fixtures/base';
import { MyEntityClass } from '../../../support/entity/MyEntityClass';
import { registerFilterSeparationSuite } from './searchSeparationSuite';

Expand Down
Loading