This commit is contained in:
Simon Knott 2025-02-04 08:37:47 +01:00
parent 32e40e6b4f
commit 8712024f3a
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC
2 changed files with 2 additions and 2 deletions

View file

@ -568,7 +568,7 @@ To get started, enable the `mockingProxy` option in your Playwright config:
```js
export default defineConfig({
use: { mockingProxy: true }
use: { mockingProxy: "inject-via-header" }
});
```

View file

@ -21,7 +21,7 @@ const config = {
'playwright.config.ts': `
module.exports = {
use: {
mockingProxy: true,
mockingProxy: "inject-via-header",
ignoreHTTPSErrors: true,
}
};