Browse Source

don't use skip assets on cargo run

Evan Almloff 1 năm trước cách đây
mục cha
commit
af555fcd1d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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,