diff --git a/playwright.config.js b/playwright.config.js index 978979b9c..d7f019bbd 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -82,7 +82,7 @@ module.exports = defineConfig({ }, { cwd: path.join(process.cwd(), "playwright-tests", "web"), - command: "dioxus serve", + command: "dx serve", port: 8080, timeout: 10 * 60 * 1000, reuseExistingServer: !process.env.CI, @@ -90,7 +90,7 @@ module.exports = defineConfig({ }, { cwd: path.join(process.cwd(), 'playwrite-tests', 'fullstack'), - command: 'dioxus build --features web --release\ncargo run --release --features ssr', + command: 'dx build --features web --release\ncargo run --release --features ssr', port: 3333, timeout: 10 * 60 * 1000, reuseExistingServer: !process.env.CI,