Interface SimulationVerdict

A pass/fail verdict for a scenario, with a human-readable reason.

interface SimulationVerdict {
    reason: string;
    success: boolean;
}

Properties

Properties

reason: string
success: boolean