IKivan-kozenko -aqa
Try yourself as a QA tester
Back to topic

Quiz

Parallelism

Check yourself

  1. 1.By default, how does Playwright run tests? Which statement is correct?
  2. 2.You have 4 parallel workers and tests that create orders in the database. Without isolation, workers overwrite each other's data. What's the best approach?
  3. 3.What happens to a worker after one of its tests fails?
  4. 4.How do you enable fully parallel execution so every individual test runs in its own worker?
  5. 5.You want to run tests with exactly 4 workers from the command line without changing the config file. Which command is correct?
  6. 6.What is the default number of workers Playwright uses if you do not set workers in the config?
  7. 7.You have fullyParallel: true globally but one describe block has tests that share a let orderId variable between them. What will happen?
  8. 8.What does test.describe.configure({ mode: 'serial' }) do in the context of parallelism?