We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a49db9f commit cce1de6Copy full SHA for cce1de6
1 file changed
openmetadata-ui/src/main/resources/ui/playwright/e2e/Features/ChangeSummaryBadge.spec.ts
@@ -20,13 +20,14 @@ import { waitForAllLoadersToDisappear } from '../../utils/entity';
20
import { navigateToExploreAndSelectEntity } from '../../utils/explore';
21
import { test } from '../fixtures/pages';
22
23
-const table = new TableClass();
24
-
25
test.describe(
26
'ChangeSummary DescriptionSourceBadge',
27
{ tag: [DOMAIN_TAGS.DISCOVERY] },
28
() => {
+ let table: TableClass;
+
29
test.beforeAll('Setup test entities', async ({ browser }) => {
30
+ table = new TableClass();
31
const { apiContext, afterAction } = await performAdminLogin(browser);
32
33
await table.create(apiContext);
0 commit comments