Interface TestSuiteResult

interface TestSuiteResult {
    status: boolean;
    tests: TestEvaluationResult[] | ITestMetaResult[];
    totalElapsedTime: number;
}

Properties

status: boolean
totalElapsedTime: number