Update playwright.config.ts#28931
Conversation
| { | ||
| useDetails: true, | ||
| showError: true, | ||
| includeResults: ['skipped', 'fail', 'flaky'], // skip pass to reduce noice |
There was a problem hiding this comment.
💡 Quality: Typo in comment: "noice" should be "noise"
In playwright.config.ts:58 the inline comment reads // skip pass to reduce noice. "noice" is a typo for "noise". The config itself is correct: includeResults: ['skipped', 'fail', 'flaky'] uses valid status strings accepted by @estruyf/github-actions-reporter v1.7.0, and showArtifactsLink: true is a supported option. Only the comment needs a quick fix.
Fix spelling of "noise" in the comment.:
includeResults: ['skipped', 'fail', 'flaky'], // skip pass to reduce noise
- Apply fix
Check the box to apply the fix or reply for a change | Was this helpful? React with 👍 / 👎
Code Review 👍 Approved with suggestions 0 resolved / 1 findingsUpdates the Playwright reporter configuration to include filtered test results and artifact links for improved debugging. A minor typo in a comment should be corrected from "noice" to "noise". 💡 Quality: Typo in comment: "noice" should be "noise"📄 openmetadata-ui/src/main/resources/ui/playwright.config.ts:58 In playwright.config.ts:58 the inline comment reads Fix spelling of "noise" in the comment.🤖 Prompt for agentsOptionsDisplay: compact → Showing less information. Comment with these commands to change:
Was this helpful? React with 👍 / 👎 | Gitar |
❌ PR checklist incompleteThis PR cannot be merged until the following are addressed on its linked issue:
The fields live on the linked issue in the Shipping project (open the issue → right sidebar → Projects). After you set them, re-run this check (or push a commit) — issue/project changes do not re-trigger it automatically. Maintainers can bypass this check by adding the |
|
🟡 Playwright Results — all passed (22 flaky)✅ 4262 passed · ❌ 0 failed · 🟡 22 flaky · ⏭️ 88 skipped
🟡 22 flaky test(s) (passed on retry)
How to debug locally# Download playwright-test-results-<shard> artifact and unzip
npx playwright show-trace path/to/trace.zip # view trace |



Describe your changes:
Fixes #
I worked on ... because ...
Type of change:
High-level design:
N/A — small change.
Tests:
Use cases covered
Unit tests
Backend integration tests
Ingestion integration tests
Playwright (UI) tests
Manual testing performed
UI screen recording / screenshots:
Not applicable.
Checklist:
Fixes <issue-number>: <short explanation>Fixes #<issue-number>above.Summary by Gitar
playwright.config.tsto include skipped, failed, and flaky results in reports to reduce noise.showArtifactsLinkin the reporter configuration to facilitate easier debugging.This will update automatically on new commits.