- parseLog(input: string): {
commit: null | string;
errors: ErrorType[];
exitCode: null | number;
reasons: ErrorType[];
tests: TestType[];
tool: null | string;
}
-
Returns {
commit: null | string;
errors: ErrorType[];
exitCode: null | number;
reasons: ErrorType[];
tests: TestType[];
tool: null | string;
}
-
commit: null | string
-
-
exitCode: null | number
-
-
-
tool: null | string
Parses a log file and returns useful information such as test results or errors
Returns