Skip to content

Commit

Permalink
Mark the pipeline alert test as slow
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketkatkar97 committed Sep 30, 2024
1 parent fd75db3 commit 739e9bf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down
11 changes: 7 additions & 4 deletions openmetadata-ui/src/main/resources/ui/playwright/utils/alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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"]');
Expand Down

0 comments on commit 739e9bf

Please sign in to comment.