mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
Fix playwrite cli args
This commit is contained in:
parent
236ffe4cb9
commit
f69b84bf34
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ module.exports = defineConfig({
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
cwd: path.join(process.cwd(), "playwright-tests", "web"),
|
cwd: path.join(process.cwd(), "playwright-tests", "web"),
|
||||||
command: "dioxus serve",
|
command: "dx serve",
|
||||||
port: 8080,
|
port: 8080,
|
||||||
timeout: 10 * 60 * 1000,
|
timeout: 10 * 60 * 1000,
|
||||||
reuseExistingServer: !process.env.CI,
|
reuseExistingServer: !process.env.CI,
|
||||||
|
@ -90,7 +90,7 @@ module.exports = defineConfig({
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
cwd: path.join(process.cwd(), 'playwrite-tests', 'fullstack'),
|
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,
|
port: 3333,
|
||||||
timeout: 10 * 60 * 1000,
|
timeout: 10 * 60 * 1000,
|
||||||
reuseExistingServer: !process.env.CI,
|
reuseExistingServer: !process.env.CI,
|
||||||
|
|
Loading…
Reference in a new issue