Skip to content

Commit 4a1466a

Browse files
Increase the timeout for custom properties common test as well
1 parent b649ef2 commit 4a1466a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

openmetadata-ui/src/main/resources/ui/playwright/e2e/Pages/CustomProperties.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,9 @@ ALL_ENTITIES.forEach(({ key, makeInstance }) => {
427427

428428
if (makeInstance !== null) {
429429
test(`Set & Update all CP types on ${entity.name}`, async ({ page }) => {
430-
test.slow(true);
430+
// 5 minutes timeout since the test handles set->update operation on all
431+
// custom property types sequentially
432+
test.setTimeout(300000);
431433
const properties = Object.values(CustomPropertyTypeByName);
432434

433435
await test.step('Set all CP types', async () => {

0 commit comments

Comments
 (0)