Merge branch 'edison/fix/12731' of https://github.com/vuejs/core into edison/fix/12731

This commit is contained in:
daiwei 2025-01-17 11:19:38 +08:00
commit 2336e2a784
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
import puppeteer, {
type Browser,
type ClickOptions,
type LaunchOptions,
type Page,
type PuppeteerLaunchOptions,
} from 'puppeteer'
export const E2E_TIMEOUT: number = 30 * 1000
const puppeteerOptions: PuppeteerLaunchOptions = {
const puppeteerOptions: LaunchOptions = {
args: process.env.CI ? ['--no-sandbox', '--disable-setuid-sandbox'] : [],
headless: true,
}