diff --git a/Userland/test-js.cpp b/Userland/test-js.cpp index f1f9602595..2a1dadd6b3 100644 --- a/Userland/test-js.cpp +++ b/Userland/test-js.cpp @@ -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();