From a5dad89cf2b60ecc51951762af6139380aeee015 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 19 May 2026 10:23:03 -0400 Subject: [PATCH] test(integration): add coverage for .js bypass during maintenance Long standing behavior. Just adds test coverage for it. Signed-off-by: Josh --- build/integration/features/maintenance-mode.feature | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build/integration/features/maintenance-mode.feature b/build/integration/features/maintenance-mode.feature index 72af31f193f..55c0b96a236 100644 --- a/build/integration/features/maintenance-mode.feature +++ b/build/integration/features/maintenance-mode.feature @@ -47,3 +47,9 @@ Feature: maintenance-mode Then the HTTP status code should be "503" Then Maintenance mode is disabled And the command was successful + + Scenario: Accessing a JS asset with maintenance mode enabled + When requesting "/dist/core-maintenance.js" with "GET" + Then the HTTP status code should be "200" + Then Maintenance mode is disabled + And the command was successful