From e2e35a9659b97a2ffc9d0c64952476b733f7faee Mon Sep 17 00:00:00 2001 From: Paul Hansen Date: Fri, 1 Mar 2024 15:47:59 -0600 Subject: [PATCH] fix(ci) Wait a bit longer for server to start It took longer than I thought in Github and barely worked, giving it a bit more of a buffer. --- examples/cargo-make/playwright-trunk-test.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cargo-make/playwright-trunk-test.toml b/examples/cargo-make/playwright-trunk-test.toml index 7e3ed3c26..707f6fb8e 100644 --- a/examples/cargo-make/playwright-trunk-test.toml +++ b/examples/cargo-make/playwright-trunk-test.toml @@ -14,7 +14,7 @@ dependencies = ["wait-server", "test-playwright", "stop"] [tasks.wait-server] script = ''' -for run in {1..6}; do +for run in {1..12}; do echo "Waiting to ensure server is started..." sleep 10 done