fix(test): rest api service deletion taking longer (#19439)

* fix(test): rest api service deletion taking longer

* fix entity name with schema
This commit is contained in:
Chirag Madlani 2025-01-21 11:42:38 +05:30 committed by GitHub
parent 3abae45403
commit 58b1ef1c03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,7 @@ import ServiceBaseClass from './ServiceBaseClass';
class ApiIngestionClass extends ServiceBaseClass {
constructor() {
super(Services.API, `pw-api-with-%-${uuid()}`, 'Rest', 'Containers');
super(Services.API, `pw-api-with-%-${uuid()}`, 'Rest', 'store');
}
async createService(page: Page) {
@ -33,7 +33,7 @@ class ApiIngestionClass extends ServiceBaseClass {
}
async fillConnectionDetails(page: Page) {
const openAPISchemaURL = 'https://docs.open-metadata.org/swagger.json';
const openAPISchemaURL = 'https://petstore3.swagger.io/api/v3/openapi.json';
await page.locator('#root\\/openAPISchemaURL').fill(openAPISchemaURL);
await checkServiceFieldSectionHighlighting(page, 'openAPISchemaURL');