interface CoverageProviderModule {
    getProvider(): CoverageProvider | Promise<CoverageProvider>;
    startCoverage?(): unknown;
    stopCoverage?(): unknown;
    takeCoverage?(): unknown;
}

Methods

  • Executed before tests are run in the worker thread.

    Returns unknown

  • Executed after all tests have been run in the worker thread.

    Returns unknown

  • Executed on after each run in the worker thread. Possible to return a payload passed to the provider

    Returns unknown

Generated using TypeDoc