Browse Source

fix playwright tests on windows

Evan Almloff 1 year ago
parent
commit
dc6ea152ee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      playwright-tests/playwright.config.js

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

@@ -90,7 +90,7 @@ module.exports = defineConfig({
     },
     },
     {
     {
       cwd: path.join(process.cwd(), 'fullstack'),
       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,
       port: 3333,
       timeout: 10 * 60 * 1000,
       timeout: 10 * 60 * 1000,
       reuseExistingServer: !process.env.CI,
       reuseExistingServer: !process.env.CI,