fix playwright tests on windows

This commit is contained in:
Evan Almloff 2023-09-20 14:34:47 -05:00
parent 60ee82942c
commit dc6ea152ee

View file

@ -90,7 +90,7 @@ module.exports = defineConfig({
},
{
cwd: path.join(process.cwd(), 'fullstack'),
command: 'cargo run --package dioxus-cli -- build --features web --release\ncargo run --release --features ssr',
command: 'cargo run --package dioxus-cli -- build --features web --release && cargo run --release --features ssr',
port: 3333,
timeout: 10 * 60 * 1000,
reuseExistingServer: !process.env.CI,