Tests: Disable test-js on Windows

It doesn't quite work in CI the same way it does with the VS Preview
locally.
This commit is contained in:
ayeteadoe 2025-06-16 15:15:39 -06:00 committed by Andrew Kaster
commit d9d6e55102
Notes: github-actions[bot] 2025-06-17 21:34:44 +00:00

View file

@ -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})