> For the complete documentation index, see [llms.txt](https://docs.appetize.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appetize.io/testing/running-tests.md).

# Running Tests

You can run your tests exactly how you would with a regular Playwright project:

```bash
npx playwright test

# or

npx playwright test --headed
```

[See Playwright documentation for running tests](https://playwright.dev/docs/running-tests)

## Parallel Tests

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 ](https://playwright.dev/docs/test-parallel#worker-processes)in `playwright.config.ts`.
