File tree Expand file tree Collapse file tree
openmetadata-ui/src/main/resources/ui/playwright/e2e/Features Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments