ladybird/Tests/LibWeb/CMakeLists.txt
Max Wipfli 5a44a0b9f4 Tests: Add a basic test suite for HTMLTokenizer
The test suite includes a few basic tests and a very crude regression
test, which just concatenates the to_string() of all tokens and checks
the String's hash to be equal. This relies on the format of
HTMLToken::to_string() to stay the same, which is not ideal.
2021-07-14 23:03:36 +02:00

13 lines
352 B
CMake

set(
TEST_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/TestHTMLTokenizer.cpp
)
foreach(source ${TEST_SOURCES})
serenity_test(${source} LibWeb LIBS LibWeb)
endforeach()
serenity_testjs_test(test-web.cpp test-web LIBS LibWeb)
install(TARGETS test-web RUNTIME DESTINATION bin OPTIONAL)
install(FILES tokenizer-test.html DESTINATION usr/Tests/LibWeb)