vitalets / playwright-bdd

BDD testing with Playwright runner
https://vitalets.github.io/playwright-bdd/
MIT License
282 stars 33 forks source link

Question: How to disable parallelism for a single feature file? #224

Closed marek-siemieniuk-morawski closed 1 hour ago

marek-siemieniuk-morawski commented 2 hours ago

Hey, I have a case when the scenarios in one of the feature files depend on the same external resource that I can't stub or mock. In a plain Playwright we can disable parallel mode for a single spec file https://playwright.dev/docs/test-parallel#parallelize-tests-in-a-single-file , but couldn't figure out whether it's possible with playwright-bdd as well. Is it?

marek-siemieniuk-morawski commented 1 hour ago

False alarm, found it: https://vitalets.github.io/playwright-bdd/#/writing-features/special-tags?id=modexxx

Many thanks for your work, great job!