Closed tehsphinx closed 4 years ago
@ErikSchierboom: This change removes the extra test I created on a compile error to hold the error message and adds the error message on top level. The only output is then status
and message
. tests
is null. Or should I omit that?
Example:
{
"status": "error",
"message": "./sample_test.go:37:1: missing return at end of function",
"tests": null
}
@tehsphinx Awesome! Could you make the tests
an empty array perhaps?
@ErikSchierboom
{
"status": "error",
"message": "./sample_test.go:37:1: missing return at end of function",
"tests": []
}
Thanks!
Fixes #11