-
Notifications
You must be signed in to change notification settings - Fork 9
fix(playwright): inherit tags from describe suites (#1236) #230
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
Conversation
|
🌀 Tests overview by Testomatio Found 223 mocha tests in 25 files 📑 List all tests
📝 tests/updateIds_codeceptjs_test.js
📝 tests/updateIds_gauge_test.js
📝 tests/updateIds_markdown_test.js
📝 tests/updateIds_nightwatch_test.js
📝 tests/updateIds_playwright_test.js
|
| function getAllSuiteTags(currentSuite) { | ||
| const tags = []; | ||
| currentSuite.forEach(suite => { | ||
| if (suite.tags && suite.tags.length) { |
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.
if (suite.tags?.length) {
This PR fixes Playwright test import so that tags defined on
test.describeare inherited by inner tests and correctly displayed on the Tests page in Testomat.io.testomatio/app#1236
Result