1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

test-js: Print parse error if test-common.js fails to parse

This commit is contained in:
Nico Weber 2020-08-21 21:45:21 -04:00 committed by Andreas Kling
parent ebd510ef5e
commit 3fbb02c3cc

View file

@ -245,7 +245,9 @@ JSFileResult TestRunner::run_file_test(const String& test_path)
if (!m_test_program) {
auto result = parse_file(String::format("%s/test-common.js", m_test_root.characters()));
if (result.is_error()) {
printf("Unable to parse test-common.js");
printf("Unable to parse test-common.js\n");
printf("%s\n", result.error().error.to_string().characters());
printf("%s\n", result.error().hint.characters());
exit(1);
}
m_test_program = result.value();