From d9d6e551021f423ad61a81e6bf6058bd1fa63725 Mon Sep 17 00:00:00 2001 From: ayeteadoe Date: Mon, 16 Jun 2025 15:15:39 -0600 Subject: [PATCH] Tests: Disable test-js on Windows It doesn't quite work in CI the same way it does with the VS Preview locally. --- Tests/LibJS/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tests/LibJS/CMakeLists.txt b/Tests/LibJS/CMakeLists.txt index 32f6a0e80e0..714378830e6 100644 --- a/Tests/LibJS/CMakeLists.txt +++ b/Tests/LibJS/CMakeLists.txt @@ -1,5 +1,10 @@ serenity_test(test-invalid-unicode-js.cpp LibJS LIBS LibJS LibUnicode) serenity_test(test-value-js.cpp LibJS LIBS LibJS LibUnicode) +# FIXME: This test is currently not working in the windows-2025 GHA image due to the Visual Studio version currently being used +if (WIN32 AND ENABLE_WINDOWS_CI) + return() +endif() + serenity_testjs_test(test-js.cpp test-js LIBS LibGC) set_tests_properties(test-js PROPERTIES ENVIRONMENT LADYBIRD_SOURCE_DIR=${SERENITY_PROJECT_ROOT})