summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorLuke <luke.wilde@live.co.uk>2020-08-17 21:04:46 +0100
committerAndreas Kling <kling@serenityos.org>2020-08-17 22:57:05 +0200
commitc2a2552e4656fba2a1379af212a5cb8908c0a824 (patch)
tree1b85c8069c31c82048c6b3fb26e49ed29c74f47e /Userland
parent8b807e65d7fe423a35a7d506f89b0532f45aa032 (diff)
downloadserenity-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.cpp2
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);
});