Feature: Can we generate multiple test.describe() in feature-gen for a specific feature file
shashankkvs309668 opened this issue · 3 comments
shashankkvs309668 commented
The problem
i wanted to group few scenarios like sets of test.describe() from the feature file so that it can support running scenarios in parallel workers. Currently if i have 20 in one feature file and run in parallel mode it is taking one worker for all 20 scenarios which will delay the execution
A solution
Need support to generate multiple test.describe() in feature-gen for a specific feature file
vitalets commented
There are some options:
- use
Rule
inside feature file, each rule will be wrapped into own test.describe - set
fullyParallel
to true. In that case 20 scenarios from one feature will be shared across all available workers. Does it solve your case?
shashankkvs309668 commented
Hey I missed that option. Thanks for clarifying it. This makes sense
shashankkvs309668 commented
Working good as per the comments