Comment on page
Running Tests
You can run your tests exactly how you would with a regular Playwright project:
npx playwright test
# or
npx playwright test --headed
All tests in a test suite will run serially using the same session. This keeps you from re-entering the queue for each individual test and overall leads to faster test times. However, should a test fail, the session ends and a new one is requested.
You may run multiple test suites in parallel so long as your Appetize account has capacity for concurrent sessions. To do this, increase the number of workers in
playwright.config.ts
.
Last modified 6mo ago