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.slow();
const ALERT_NAME = generateAlertName();
await test.step('Create alert', async () => {

View File

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