@microfocus/alm-octane-test-result-convertion
Version:
A NodeJS library for converting different kinds of test reports into OpenText SDP / SDM format.
25 lines • 632 B
TypeScript
import TestRunError from './TestRunError';
interface TestRun {
error?: TestRunError;
description?: string;
_attributes: {
module?: string;
package?: string;
class?: string;
name: string;
status?: TestRunResult;
duration?: number;
started?: number;
run_type?: string;
external_report_url?: string;
external_test_id?: string;
external_run_id?: string;
};
}
declare enum TestRunResult {
PASSED = "Passed",
FAILED = "Failed",
SKIPPED = "Skipped"
}
export { TestRun, TestRunResult };
//# sourceMappingURL=TestRun.d.ts.map