Przeglądaj źródła

don't use skip assets on cargo run

Evan Almloff 1 rok temu
rodzic
commit
af555fcd1d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      playwright-tests/playwright.config.js

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

@@ -74,7 +74,7 @@ module.exports = defineConfig({
   webServer: [
     {
       command:
-        "cargo run --package dioxus-playwright-liveview-test --bin dioxus-playwright-liveview-test --skip-assets",
+        "cargo run --package dioxus-playwright-liveview-test --bin dioxus-playwright-liveview-test",
       port: 3030,
       timeout: 10 * 60 * 1000,
       reuseExistingServer: !process.env.CI,