mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: small fixes (#11397)
This commit is contained in:
parent
856802fec3
commit
b58ba6b07c
@ -52,4 +52,5 @@ versioned_*/
|
||||
|
||||
# Ng-schematics
|
||||
/packages/ng-schematics/files/
|
||||
/packages/ng-schematics/sandbox/
|
||||
/packages/ng-schematics/sandbox/
|
||||
/packages/ng-schematics/multi/
|
||||
|
@ -1356,7 +1356,6 @@ export abstract class ElementHandle<
|
||||
|
||||
const page = this.frame.page();
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
await using _ =
|
||||
allowViewportExpansion && clip
|
||||
? await page._createTemporaryViewportContainingBox(clip)
|
||||
|
@ -162,7 +162,6 @@ export class IsolatedWorld extends Realm {
|
||||
return;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
using _ = await this.#mutex.acquire();
|
||||
try {
|
||||
await context._client.send(
|
||||
|
@ -3635,6 +3635,12 @@
|
||||
"parameters": ["firefox", "headful", "webDriverBiDi"],
|
||||
"expectations": ["FAIL"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[launcher.spec] Launcher specs Puppeteer Browser.disconnect should reject navigation when browser closes",
|
||||
"platforms": ["darwin", "linux", "win32"],
|
||||
"parameters": ["cdp", "firefox", "headful"],
|
||||
"expectations": ["FAIL", "PASS"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[navigation.spec] navigation \"after all\" hook in \"navigation\"",
|
||||
"platforms": ["darwin", "linux", "win32"],
|
||||
|
@ -203,6 +203,8 @@ async function main() {
|
||||
!reporter ? path.join(__dirname, 'reporter.js') : reporter,
|
||||
'-O',
|
||||
`output=${tmpFilename}`,
|
||||
'-n',
|
||||
'trace-warnings',
|
||||
];
|
||||
|
||||
const specPattern = 'test/build/**/*.spec.js';
|
||||
|
Loading…
Reference in New Issue
Block a user