Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,26 @@ Debugging tests can be hard sometimes and it is very useful to be able to pause
await jestPlaywright.debug()
```

## Unstable and experimental API

From version **0.0.7** you can run you tests for multiple browsers.

- You must have installed **playwright** package
- You must define browser to test with your `jest-playwright.config.js`:

```javascript
module.exports = {
browsers: ["chromium", "webkit"],
...
}
```

- You must run your tests with **jest-playwright**

```json
"test:parallel": "jest-playwright --parallel"
```

## Inspiration

Thanks to [Smooth Code](https://github.com/smooth-code) for great [jest-puppeteer](https://github.com/smooth-code/jest-puppeteer).
Expand Down
Loading