mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-08 13:40:08 +00:00
fix the flaky test failure around bulk import (#21271)
(cherry picked from commit 2f795ccc13696fd6ec8acaa532539026a02df9f3)
This commit is contained in:
parent
b789ece15b
commit
79bbea556b
@ -861,7 +861,7 @@ test.describe('Bulk Import Export', () => {
|
||||
|
||||
await fillColumnDetails(columnDetails2, page);
|
||||
|
||||
await page.click('[type="button"] >> text="Next"', { force: true });
|
||||
await page.getByRole('button', { name: 'Next' }).click();
|
||||
|
||||
await validateImportStatus(page, {
|
||||
passed: '9',
|
||||
|
||||
@ -18,7 +18,12 @@ import {
|
||||
FIELD_VALUES_CUSTOM_PROPERTIES,
|
||||
} from '../constant/glossaryImportExport';
|
||||
import { GlobalSettingOptions } from '../constant/settings';
|
||||
import { descriptionBox, descriptionBoxReadOnly, uuid } from './common';
|
||||
import {
|
||||
clickOutside,
|
||||
descriptionBox,
|
||||
descriptionBoxReadOnly,
|
||||
uuid,
|
||||
} from './common';
|
||||
import {
|
||||
addCustomPropertiesForEntity,
|
||||
fillTableColumnInputDetails,
|
||||
@ -213,6 +218,8 @@ const editGlossaryCustomProperty = async (
|
||||
.locator(descriptionBox)
|
||||
.fill(FIELD_VALUES_CUSTOM_PROPERTIES.MARKDOWN);
|
||||
|
||||
await clickOutside(page);
|
||||
|
||||
await page.getByTestId('markdown-editor').getByTestId('save').click();
|
||||
|
||||
await page.waitForSelector(descriptionBox, {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user