mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-14 00:27:12 +00:00
7ef57345ca
* fix(examples/build): maybe spawn client process * docs(examples/error_boundary): add testing note
14 lines
361 B
TOML
14 lines
361 B
TOML
extend = [
|
|
{ path = "../cargo-make/playwright.toml" },
|
|
{ path = "../cargo-make/trunk_server.toml" },
|
|
]
|
|
|
|
[tasks.integration-test]
|
|
description = "Run integration test with automated start and stop of processes"
|
|
env = { SPAWN_CLIENT_PROCESS = "1" }
|
|
dependencies = ["start", "wait-one", "test-playwright", "stop"]
|
|
|
|
[tasks.wait-one]
|
|
script = '''
|
|
sleep 1
|
|
'''
|