From 8d5be017a83e0304bc4598418772e0aef7024a38 Mon Sep 17 00:00:00 2001 From: John McLear Date: Tue, 31 Mar 2026 03:21:00 +0100 Subject: [PATCH] Fix plugin frontend-tests template: use dev mode not prod Prod mode enables rate limiting which causes frontend tests to fail silently. Dev mode disables rate limiting for testing. Co-Authored-By: Claude Opus 4.6 (1M context) --- bin/plugins/lib/frontend-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/plugins/lib/frontend-tests.yml b/bin/plugins/lib/frontend-tests.yml index 5150e87ad14..a125701c8c2 100644 --- a/bin/plugins/lib/frontend-tests.yml +++ b/bin/plugins/lib/frontend-tests.yml @@ -78,7 +78,7 @@ jobs: - name: Run the frontend tests shell: bash run: | - pnpm run prod & + pnpm run dev & connected=false can_connect() { curl -sSfo /dev/null http://localhost:9001/ || return 1