Type alias ServiceTestStats

ServiceTestStats: {
    duration: number;
    failures: number;
    passes: number;
    pending: number;
    tests: number;
}

Test stats for a Foxx service's tests.

Type declaration

  • duration: number

    Total test duration in milliseconds.

  • failures: number

    Number of tests that failed.

  • passes: number

    Number of tests that ran successfully.

  • pending: number

    Number of tests skipped or not executed.

  • tests: number

    Total number of tests found.

Generated using TypeDoc