Represents a Meta Data of a test result.

interface TestResultMetaData {
    automatedTestName?: string;
    automatedTestStorage?: string;
    flakyIdentifiers?: TestFlakyIdentifier[];
    owner?: string;
    priority?: number;
    testCaseReferenceId?: number;
    testCaseTitle?: string;
}

Properties

automatedTestName?: string

AutomatedTestName of test result.

automatedTestStorage?: string

AutomatedTestStorage of test result.

flakyIdentifiers?: TestFlakyIdentifier[]

List of Flaky Identifier for TestCaseReferenceId

owner?: string

Owner of test result.

priority?: number

Priority of test result.

testCaseReferenceId?: number

ID of TestCaseReference.

testCaseTitle?: string

TestCaseTitle of test result.