UNPKG

angles-javascript-client

Version:

This is the javascript client for the Angles Dashboard. It allows you to store your test results.

11 lines (10 loc) 271 B
import { ExecutionStates } from './enum/ExecutionStates'; import { Execution } from './Execution'; export declare class Suite { name: string; result: Map<string, number>; status: ExecutionStates; start: Date; end: Date; executions: Execution[]; }