Execution of a test function.

interface IExecution {
    completed_at: string;
    error: null | Error;
    location: string;
    name: string;
    started_at: string;
}

Properties

completed_at: string

Completion time.

error: null | Error

Error when occured.

location: string

Location path of the function.

name: string

Name of function.

started_at: string

Elapsed time.