1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:57:35 +00:00

LibTest + test-js: Add initial skelaton of LibTest and migrate code there.

The test-js reporter is arguably the nicest test runner / reporter that
exists in the serenity code base. To the goal of leveling up all the
other unit test environments, start a new LibTest library so that we
can share code and reporting utilities to make all the test systems
look and behave similarly.
This commit is contained in:
Brian Gianforcaro 2021-02-28 13:09:13 -08:00 committed by Andreas Kling
parent 0b5ca28475
commit 0a49877fdc
4 changed files with 90 additions and 50 deletions

View file

@ -30,6 +30,7 @@ add_subdirectory(LibSymbolClient)
add_subdirectory(LibSyntax)
add_subdirectory(LibSystem)
add_subdirectory(LibTar)
add_subdirectory(LibTest)
add_subdirectory(LibTextCodec)
add_subdirectory(LibThread)
add_subdirectory(LibTLS)