• Parses a log file and returns useful information such as test results or errors

    Returns

    Parameters

    • input: string

      the log to parse

    Returns {
        commit: null | string;
        errors: ErrorType[];
        exitCode: null | number;
        reasons: ErrorType[];
        tests: TestType[];
        tool: null | string;
    }

Generated using TypeDoc