Mark the pipeline alert test as slow (#18046)

This commit is contained in:
Aniket Katkar 2024-09-30 17:24:02 +05:30 committed by GitHub
parent 85519cf280
commit dcde500969
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 4 deletions

View File

@ -105,6 +105,8 @@ test.describe('Observability Alert Flow', () => {
}); });
test('Pipeline Alert', async ({ page }) => { test('Pipeline Alert', async ({ page }) => {
test.slow();
const ALERT_NAME = generateAlertName(); const ALERT_NAME = generateAlertName();
await test.step('Create alert', async () => { await test.step('Create alert', async () => {

View File

@ -20,6 +20,9 @@ import {
} from '../constant/alert.interface'; } from '../constant/alert.interface';
import { DELETE_TERM } from '../constant/common'; import { DELETE_TERM } from '../constant/common';
import { SidebarItem } from '../constant/sidebar'; import { SidebarItem } from '../constant/sidebar';
import { Domain } from '../support/domain/Domain';
import { DashboardClass } from '../support/entity/DashboardClass';
import { UserClass } from '../support/user/UserClass';
import { import {
clickOutside, clickOutside,
descriptionBox, descriptionBox,
@ -643,10 +646,10 @@ export const addMultipleFilters = async ({
dashboard, dashboard,
}: { }: {
page: Page; page: Page;
user1; user1: UserClass;
user2; user2: UserClass;
domain; domain: Domain;
dashboard; dashboard: DashboardClass;
}) => { }) => {
// Add owner filter // Add owner filter
await page.click('[data-testid="add-filters"]'); await page.click('[data-testid="add-filters"]');