This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Description
Describe the bug
Wrong passing options with this case.
// jest-playwright.config.js
...
contextOptions: {
firefox: {...}
}
To Reproduce
- Looks good
// jest-playwright.config.js
...
browsers: ['firefox', 'webkit'],
contextOptions: {
firefox: {
ignoreHTTPSErrors: true,
}
}
- Ignores specific options
// jest-playwright.config.js
...
browsers: ['webkit', 'firefox'],
contextOptions: {
firefox: {
ignoreHTTPSErrors: true,
}
}
Expected behavior
Should work for two cases