Organizing tests is not working as supposed to be #2998
Unanswered
LFCunha10
asked this question in
Questions & Support
Replies: 1 comment 2 replies
-
Hello! Usually, you can wrap your tests into For example: test.describe("parent suite", () => {
test.describe("suite", () => {
test.describe("subSuite", () => {
// ...
})
})
}) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello.
I'm using allure-playwright and I'm trying to organize my test report
Via suite
allure.label('parentSuite', 'Functional E2E Tests');
Via epic
allure.epic('My Epic');
Importing allure from
import * as allure from 'allure-js-commons';
I'm adding the annotations inside of a beforeEach hook, and, on this case, my report is generated ignoring the annotation and assuming the Package-based hierarchy.
Is there a better way to implement this, instead of repeat the annotations on each test?
Beta Was this translation helpful? Give feedback.
All reactions