Browse Source

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

daiwei 1 năm trước cách đây
mục cha
commit
2336e2a784
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      packages/vue/__tests__/e2e/e2eUtils.ts

+ 2 - 2
packages/vue/__tests__/e2e/e2eUtils.ts

@@ -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,
 }