mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-13 12:08:47 +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,
|
ENTITY_REFERENCE_PROPERTIES,
|
||||||
} from '../constant/customProperty';
|
} from '../constant/customProperty';
|
||||||
import {
|
import {
|
||||||
ENTITY_PATH,
|
|
||||||
EntityTypeEndpoint,
|
EntityTypeEndpoint,
|
||||||
|
ENTITY_PATH,
|
||||||
} from '../support/entity/Entity.interface';
|
} from '../support/entity/Entity.interface';
|
||||||
import { UserClass } from '../support/user/UserClass';
|
import { UserClass } from '../support/user/UserClass';
|
||||||
import { clickOutside, descriptionBox, uuid } from './common';
|
import { clickOutside, descriptionBox, uuid } from './common';
|
||||||
@ -704,7 +704,11 @@ export const editCreatedProperty = async (
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (type === 'Table') {
|
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();
|
await editButton.click();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user