UNPKG

@japa/runner

Version:

A simple yet powerful testing framework for Node.js

18 lines (17 loc) 629 B
import type { BaseReporterOptions, NamedReporterContract } from '../types.js'; /** * Create an instance of the spec reporter */ export declare const spec: (options?: BaseReporterOptions) => NamedReporterContract; /** * Create an instance of the dot reporter */ export declare const dot: (options?: BaseReporterOptions) => NamedReporterContract; /** * Create an instance of the ndjson reporter */ export declare const ndjson: (options?: BaseReporterOptions) => NamedReporterContract; /** * Create an instance of the github reporter */ export declare const github: (options?: BaseReporterOptions) => NamedReporterContract;