From a6d283a809aae2a80ad3cf5d3d1ab83bc9fd07ee Mon Sep 17 00:00:00 2001 From: John McLear Date: Tue, 31 Mar 2026 03:21:43 +0100 Subject: [PATCH] Fix plugin frontend-tests template: use dev mode not prod (#7402) 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 5150e87ad..a125701c8 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