From 64f0aaa2b4abd9baddeadef448028701a00fdf25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=B1=E3=82=A4=E3=83=A9?= Date: Tue, 12 Aug 2025 04:38:20 -0600 Subject: [PATCH] chore: skip flaking classic parameters test (#19308) Causing test-js failures on main --- site/src/pages/WorkspacePage/WorkspacePage.test.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/site/src/pages/WorkspacePage/WorkspacePage.test.tsx b/site/src/pages/WorkspacePage/WorkspacePage.test.tsx index 288e80127a..18a9e1a6f7 100644 --- a/site/src/pages/WorkspacePage/WorkspacePage.test.tsx +++ b/site/src/pages/WorkspacePage/WorkspacePage.test.tsx @@ -306,7 +306,10 @@ describe("WorkspacePage", () => { }); }); - it("updates the parameters when they are missing during update", async () => { + // Started flaking after upgrading react-router. Tests the old parameters path + // and isn't worth spending more time to fix since this code will be removed + // in a few releases when dynamic parameters takes over the world. + it.skip("updates the parameters when they are missing during update", async () => { // Mocks jest .spyOn(API, "getWorkspaceByOwnerAndName")