dependencies: Upgrade JavaScript dependencies.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2025-06-04 12:44:44 -07:00
committed by Tim Abbott
parent f6be163bcc
commit 9dd4dc08fd
5 changed files with 2162 additions and 2299 deletions

View File

@@ -94,9 +94,8 @@ export async function screenshot(page: Page, name: string | null = null): Promis
screenshot_id += 1;
}
const screenshot_path = path.join(puppeteer_dir, `${name}.png`);
await page.screenshot({
path: screenshot_path,
path: `${path.join(puppeteer_dir, name)}.png`,
});
}