From b84388df66fad08a13b7e47dccab2a9b4b69c4b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-David=20St=C3=BCtz?= <39377488+J-x-D@users.noreply.github.com> Date: Wed, 25 Feb 2026 11:39:05 +0100 Subject: [PATCH 1/4] update gui-elements subproject commit reference --- libs/gui-elements | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gui-elements b/libs/gui-elements index 59fa23adf2..5bd45513d3 160000 --- a/libs/gui-elements +++ b/libs/gui-elements @@ -1 +1 @@ -Subproject commit 59fa23adf23b48d839946b8e6c1b4c05ca23ea83 +Subproject commit 5bd45513d392a83b49bb33670cfda245804c6e09 From 31879d7486d3acf448a62208b9e13a4691669d56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-David=20St=C3=BCtz?= <39377488+J-x-D@users.noreply.github.com> Date: Mon, 9 Mar 2026 13:24:58 +0100 Subject: [PATCH 2/4] Update subproject commit for gui-elements to latest version --- libs/gui-elements | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gui-elements b/libs/gui-elements index ccf6ea7922..023f031316 160000 --- a/libs/gui-elements +++ b/libs/gui-elements @@ -1 +1 @@ -Subproject commit ccf6ea79229c1b9f450ff36618da3420206c874e +Subproject commit 023f0313168685de8fc220d2dcd8a0051743268d From 24c56d729e3474e79e269bda4d3ee64049ebb675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-David=20St=C3=BCtz?= <39377488+J-x-D@users.noreply.github.com> Date: Mon, 16 Mar 2026 13:54:40 +0100 Subject: [PATCH 3/4] Replace jest-environment-jsdom with jest-fixed-jsdom in package.json --- workspace/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/package.json b/workspace/package.json index edeb5114d0..7755cf1112 100644 --- a/workspace/package.json +++ b/workspace/package.json @@ -160,7 +160,7 @@ "i18next-scanner": "^4.6.0", "identity-obj-proxy": "^3.0.0", "jest": "^30.0.5", - "jest-environment-jsdom": "^30.0.5", + "jest-fixed-jsdom": "^0.0.11", "jest-junit": "^16.0.0", "jest-mock-axios": "^4.8.0", "jest-pnp-resolver": "^1.2.3", From a8ac56ad76f26956551239397073a02c189e3eea Mon Sep 17 00:00:00 2001 From: Andreas Schultz Date: Tue, 17 Mar 2026 13:12:55 +0100 Subject: [PATCH 4/4] Add ResizeObserver mock to setupTests.ts --- workspace/src/setupTests.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/workspace/src/setupTests.ts b/workspace/src/setupTests.ts index 77a0165800..9401beb877 100644 --- a/workspace/src/setupTests.ts +++ b/workspace/src/setupTests.ts @@ -22,6 +22,12 @@ if (window.document) { }; } +global.ResizeObserver = class { + observe() {} + unobserve() {} + disconnect() {} +}; + Object.defineProperty(window, "matchMedia", { writable: true, value: jest.fn().mockImplementation((query) => ({