Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import test, { expect } from '@playwright/test';
import { PLAYWRIGHT_INGESTION_TAG_OBJ } from '../../constant/config';
import { MYSQL, POSTGRES, REDSHIFT } from '../../constant/service';
import { POSTGRES, REDSHIFT } from '../../constant/service';
import { GlobalSettingOptions } from '../../constant/settings';
import AirflowIngestionClass from '../../support/entity/ingestion/AirflowIngestionClass';
import ApiIngestionClass from '../../support/entity/ingestion/ApiIngestionClass';
Expand Down Expand Up @@ -115,10 +115,9 @@ Object.entries(services).forEach(([key, ServiceClass]) => {
await service.updateScheduleOptions(page);
});

// TODO: Need to fix MYSQL service specific test - #28125
if (
[POSTGRES.serviceType, REDSHIFT.serviceType, MYSQL].includes(
service.serviceType
)
[POSTGRES.serviceType, REDSHIFT.serviceType].includes(service.serviceType)
) {
/**
* Tests database-specific ingestion behaviors
Expand Down
Loading