-
Notifications
You must be signed in to change notification settings - Fork 2k
skip NotificationAlerts.spec.ts #26719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,6 +30,7 @@ import { | |
| visitEditAlertPage, | ||
| } from '../../utils/alert'; | ||
| import { descriptionBox, getApiContext } from '../../utils/common'; | ||
| import { waitForAllLoadersToDisappear } from '../../utils/entity'; | ||
| import { | ||
| addFilterWithUsersListInput, | ||
| addInternalDestination, | ||
|
|
@@ -43,7 +44,6 @@ import { | |
| visitNotificationAlertPage, | ||
| } from '../../utils/notificationAlert'; | ||
| import { addExternalDestination } from '../../utils/observabilityAlert'; | ||
| import { waitForAllLoadersToDisappear } from '../../utils/entity'; | ||
|
|
||
| const dashboard = new DashboardClass(); | ||
| const table = new TableClass(); | ||
|
|
@@ -423,12 +423,13 @@ test('Conversation source alert', async ({ page }) => { | |
| }); | ||
| }); | ||
|
|
||
| // Todo: Re-enable after fixing the https://github.com/open-metadata/openmetadata-collate/issues/3280 @sonika-shah | ||
| /** | ||
| * Alert operations with permissions | ||
| * @description Creates and triggers a Table source alert; verifies alert details for permissive user and limited behavior | ||
| * for a non-permissive user; deletes the alert. | ||
| */ | ||
| test('Alert operations for a user with and without permissions', async ({ | ||
| test.skip('Alert operations for a user with and without permissions', async ({ | ||
|
Comment on lines
+426
to
+432
|
||
| page, | ||
| userWithPermissionsPage, | ||
| userWithoutPermissionsPage, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test.skip(...)is being introduced without disabling theplaywright/no-skipped-testESLint rule. Other skipped Playwright tests in this repo add an// eslint-disable-next-line playwright/no-skipped-test -- <reason>immediately above the skip, so this change is likely to failyarn lintin CI unless the disable (with a reason/link) is added (or the test is converted totest.fixme(...)if that’s the intended pattern).