Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
/ spec-reporter Public archive

Spec reporter for viewing tests progress inside terminal

License

Notifications You must be signed in to change notification settings

japa/spec-reporter

Repository files navigation

@japa/spec-reporter

Spec reporter for Japa tests runner

github-actions-image npm-image license-image typescript-image

Spec reporter displays a detailed output for the executed tests.

Installation

Install the package from the npm registry as follows.

npm i -D @japa/spec-reporter

# yarn
yarn add -D @japa/spec-reporter

Usage

You can use the spec reporter with the @japa/runner as follows.

import { configure } from '@japa/runner'
import { specReporter } from '@japa/spec-reporter'

configure({
  reporters: [specReporter()]
})