mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
fix(test): write after end in proxy test (#3039)
This commit is contained in:
parent
d1f937d651
commit
23f506b3e6
@ -41,8 +41,9 @@ describe('HTTP Proxy', () => {
|
||||
'Proxy-Authenticate': 'Basic realm="Access to internal site"'
|
||||
});
|
||||
res.end();
|
||||
} else {
|
||||
res.end(`<html><title>${auth}</title></html>`);
|
||||
}
|
||||
res.end(`<html><title>${auth}</title></html>`);
|
||||
});
|
||||
const browser = await browserType.launch({
|
||||
...defaultBrowserOptions,
|
||||
|
Loading…
Reference in New Issue
Block a user