Skip to content

Commit de4cd1f

Browse files
committed
Removed assertions from beforeAll (#27640)
1 parent 7c11b2a commit de4cd1f

1 file changed

Lines changed: 0 additions & 19 deletions

File tree

openmetadata-ui/src/main/resources/ui/playwright/e2e/Features/ChangeSummaryBadge.spec.ts

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ test.describe(
4242
queryParams: { changeSource: 'Suggested' },
4343
});
4444

45-
const columnName = table.entityResponseData?.columns?.[0]?.name;
46-
4745
await table.patch({
4846
apiContext,
4947
patchData: [
@@ -56,23 +54,6 @@ test.describe(
5654
queryParams: { changeSource: 'Suggested' },
5755
});
5856

59-
const changeSummaryResponse = await apiContext.get(
60-
`/api/v1/changeSummary/table/${table.entityResponseData?.id}`
61-
);
62-
63-
expect(changeSummaryResponse.status()).toBe(200);
64-
65-
const changeSummaryData = await changeSummaryResponse.json();
66-
67-
expect(changeSummaryData.changeSummary).toHaveProperty('description');
68-
expect(changeSummaryData.changeSummary.description.changeSource).toBe(
69-
'Suggested'
70-
);
71-
72-
expect(
73-
changeSummaryData.changeSummary[`columns.${columnName}.description`]
74-
).toBeDefined();
75-
7657
await afterAction();
7758
});
7859

0 commit comments

Comments
 (0)