-
Notifications
You must be signed in to change notification settings - Fork 4.2k
feat(html-reporter): add config options to ignore test steps on html reporter #36078
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
feat(html-reporter): add config options to ignore test steps on html reporter #36078
Conversation
@microsoft-github-policy-service agree |
This comment has been minimized.
This comment has been minimized.
3b45a9b
to
020c768
Compare
@microsoft-github-policy-service agree |
This comment has been minimized.
This comment has been minimized.
020c768
to
d46d48b
Compare
This comment has been minimized.
This comment has been minimized.
Test results for "tests 1"1 failed 6 flaky39228 passed, 804 skipped Merge workflow run. |
I like the idea, but I'm not sure I like the implementation. I'd rather
It is best to start with filing a feature request, shaking hands on it and proceeding with the implementation later. |
I think (2) allHeaders is already hidden btw |
I'm using the version |
@pavelfeldman sure Let me create a feature request issue to make it happens and we can discuss the implementation there. So should I close this PR then, right? |
Yep, let's close it. |
Context
Currently in my team we decided to go with playwright using Given When Then style to write our tests and make it in a common language with business. So as we also follow BDD approach we use our tests scenarios as living documentation and our currently living documentation is the html-reporter that works good for our case.
But there is a small problem for us using html-reporter. Since the html-reporter add some unwanted steps on the report. e.g.
Before Hooks
orAfter Hooks
. That add no value to business people reading it.So this pull request is to add a way to ignore/filter that unwanted steps making it more flexible.