UNPKG

testbeats

Version:

Publish test results to Microsoft Teams, Google Chat, Slack and InfluxDB

41 lines (36 loc) 768 B
export type IBeatExecutionMetric = { id: string created_at: string updated_at: string newly_failed: number always_failing: number recurring_failures: number recovered: number added: number removed: number flaky: number failure_summary: any failure_summary_provider: any failure_summary_model: any status: string status_message: any test_run_id: string org_id: string } export type IPaginatedAPIResponse<T> = { page: number limit: number total: number values: T[] } export type IErrorClustersResponse = {} & IPaginatedAPIResponse<IErrorCluster>; export type IErrorCluster = { test_failure_id: string failure: string count: number } export type IFailureAnalysisMetric = { id: string name: string count: number }