Problem
The Playwright E2E test 'Alert operations for a user with and without permissions' is currently skipped in the AUT (non-OSS) environment in both NotificationAlerts.spec.ts and ObservabilityAlerts.spec.ts. It was disabled via test.fixme(process.env.PLAYWRIGHT_IS_OSS !== 'true', 'Skipping in AUT environment') because owner search on the user index was throwing an error, which made the permission flow fail intermittently in AUT CI.
Steps to reproduce (before fix)
- Run the notification/observability alert Playwright suite in the AUT environment.
- Open the alert form and search for an owner in the user index.
- Observe the nested owners query failing, causing the permission test to break.
Expected behavior
With the owner-search failure resolved (OpenMetadata#26794, closing collate#3280), the permission-based alert operations test should run and pass in the AUT environment, so it should no longer be skipped.
Fix
Remove the test.fixme AUT skip guard from both spec files so the test executes in AUT CI again.
Problem
The Playwright E2E test 'Alert operations for a user with and without permissions' is currently skipped in the AUT (non-OSS) environment in both
NotificationAlerts.spec.tsandObservabilityAlerts.spec.ts. It was disabled viatest.fixme(process.env.PLAYWRIGHT_IS_OSS !== 'true', 'Skipping in AUT environment')because owner search on the user index was throwing an error, which made the permission flow fail intermittently in AUT CI.Steps to reproduce (before fix)
Expected behavior
With the owner-search failure resolved (OpenMetadata#26794, closing collate#3280), the permission-based alert operations test should run and pass in the AUT environment, so it should no longer be skipped.
Fix
Remove the
test.fixmeAUT skip guard from both spec files so the test executes in AUT CI again.