diff options
author | Luke <luke.wilde@live.co.uk> | 2020-08-17 21:04:46 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-17 22:57:05 +0200 |
commit | c2a2552e4656fba2a1379af212a5cb8908c0a824 (patch) | |
tree | 1b85c8069c31c82048c6b3fb26e49ed29c74f47e /Userland | |
parent | 8b807e65d7fe423a35a7d506f89b0532f45aa032 (diff) | |
download | serenity-c2a2552e4656fba2a1379af212a5cb8908c0a824.zip |
LibWeb: Add more document tests, add comment, text and mixin tests
Also adds a TypeScript definition file for the test runner object.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/test-web.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/test-web.cpp b/Userland/test-web.cpp index bdf011e625..a83ce8ace1 100644 --- a/Userland/test-web.cpp +++ b/Userland/test-web.cpp @@ -193,7 +193,7 @@ static Vector<String> get_test_paths(const String& test_root) Vector<String> paths; iterate_directory_recursively(test_root, [&](const String& file_path) { - if (!file_path.ends_with("test-common.js")) + if (!file_path.ends_with("test-common.js") && !file_path.ends_with(".html") && !file_path.ends_with(".ts")) paths.append(file_path); }); |