mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-12 11:39:39 +00:00
test: fix table type custom property AUT (#18374)
This commit is contained in:
parent
a2dac2489c
commit
7fe07fea35
@ -17,8 +17,8 @@ import {
|
||||
ENTITY_REFERENCE_PROPERTIES,
|
||||
} from '../constant/customProperty';
|
||||
import {
|
||||
ENTITY_PATH,
|
||||
EntityTypeEndpoint,
|
||||
ENTITY_PATH,
|
||||
} from '../support/entity/Entity.interface';
|
||||
import { UserClass } from '../support/user/UserClass';
|
||||
import { clickOutside, descriptionBox, uuid } from './common';
|
||||
@ -704,7 +704,11 @@ export const editCreatedProperty = async (
|
||||
}
|
||||
|
||||
if (type === 'Table') {
|
||||
await expect(page.getByText('Columns:pw-column1pw-column2')).toBeVisible();
|
||||
await expect(
|
||||
page
|
||||
.locator(`[data-row-key="${propertyName}"]`)
|
||||
.getByText('Columns:pw-column1pw-column2')
|
||||
).toBeVisible();
|
||||
}
|
||||
|
||||
await editButton.click();
|
||||
|
Loading…
x
Reference in New Issue
Block a user