make playwright timeout even longer (50min)

This commit is contained in:
Evan Almloff 2024-07-18 03:26:12 +02:00 committed by GitHub
parent 742721bfde
commit a490a94ae5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -76,7 +76,7 @@ module.exports = defineConfig({
command:
"cargo run --package dioxus-playwright-liveview-test --bin dioxus-playwright-liveview-test",
port: 3030,
timeout: 30 * 60 * 1000,
timeout: 50 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
},
@ -85,7 +85,7 @@ module.exports = defineConfig({
command:
'cargo run --package dioxus-cli --release -- serve --addr "127.0.0.1" --port 9999',
port: 9999,
timeout: 30 * 60 * 1000,
timeout: 50 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
},
@ -94,7 +94,7 @@ module.exports = defineConfig({
command:
'cargo run --package dioxus-cli --release -- serve --force-sequential --platform static-generation --addr "127.0.0.1" --port 2222',
port: 2222,
timeout: 30 * 60 * 1000,
timeout: 50 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
},
@ -103,7 +103,7 @@ module.exports = defineConfig({
command:
'cargo run --package dioxus-cli --release -- serve --force-sequential --platform fullstack --addr "127.0.0.1" --port 3333',
port: 3333,
timeout: 30 * 60 * 1000,
timeout: 50 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
},
@ -112,7 +112,7 @@ module.exports = defineConfig({
command:
'cargo run --package dioxus-cli --release -- serve --force-sequential --platform fullstack --addr "127.0.0.1" --port 4040',
port: 4040,
timeout: 30 * 60 * 1000,
timeout: 50 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
},
@ -121,7 +121,7 @@ module.exports = defineConfig({
command:
'cargo run --package dioxus-cli --release -- serve --force-sequential --platform fullstack --addr "127.0.0.1" --port 5050',
port: 5050,
timeout: 30 * 60 * 1000,
timeout: 50 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
},