Browse Source

increase playwright timeout

Evan Almloff 1 năm trước cách đây
mục cha
commit
6973e8bb86
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      playwright-tests/playwright.config.js

+ 3 - 3
playwright-tests/playwright.config.js

@@ -76,7 +76,7 @@ module.exports = defineConfig({
       command:
         "cargo run --package dioxus-playwright-liveview-test --bin dioxus-playwright-liveview-test",
       port: 3030,
-      timeout: 10 * 60 * 1000,
+      timeout: 20 * 60 * 1000,
       reuseExistingServer: !process.env.CI,
       stdout: "pipe",
     },
@@ -84,7 +84,7 @@ module.exports = defineConfig({
       cwd: path.join(process.cwd(), "web"),
       command: "cargo run --package dioxus-cli --release -- serve --skip-assets",
       port: 8080,
-      timeout: 10 * 60 * 1000,
+      timeout: 20 * 60 * 1000,
       reuseExistingServer: !process.env.CI,
       stdout: "pipe",
     },
@@ -92,7 +92,7 @@ module.exports = defineConfig({
       cwd: path.join(process.cwd(), 'fullstack'),
       command: 'cargo run --package dioxus-cli --release -- build --features web --release --skip-assets\ncargo run --release --features ssr',
       port: 3333,
-      timeout: 10 * 60 * 1000,
+      timeout: 20 * 60 * 1000,
       reuseExistingServer: !process.env.CI,
       stdout: "pipe",
     },