testLab.TestMatrixCompletedData interface

The data within all Firebase test matrix completed events.

Signature:

export interface TestMatrixCompletedData 

Properties

Property Type Description
clientInfo ClientInfo Information provided by the client that created the test matrix.
createTime string Time the test matrix was created.
invalidMatrixDetails string Code that describes why the test matrix is considered invalid. Only set for matrices in the INVALID state.
outcomeSummary OutcomeSummary Outcome summary of the test matrix.
resultStorage ResultStorage Locations where test results are stored.
state TestState State of the test matrix.
testMatrixId string ID of the test matrix this event belongs to.

testLab.TestMatrixCompletedData.clientInfo

Information provided by the client that created the test matrix.

Signature:

clientInfo: ClientInfo;

testLab.TestMatrixCompletedData.createTime

Time the test matrix was created.

Signature:

createTime: string;

testLab.TestMatrixCompletedData.invalidMatrixDetails

Code that describes why the test matrix is considered invalid. Only set for matrices in the INVALID state.

Signature:

invalidMatrixDetails: string;

testLab.TestMatrixCompletedData.outcomeSummary

Outcome summary of the test matrix.

Signature:

outcomeSummary: OutcomeSummary;

testLab.TestMatrixCompletedData.resultStorage

Locations where test results are stored.

Signature:

resultStorage: ResultStorage;

testLab.TestMatrixCompletedData.state

State of the test matrix.

Signature:

state: TestState;

testLab.TestMatrixCompletedData.testMatrixId

ID of the test matrix this event belongs to.

Signature:

testMatrixId: string;