Files
portfolio2023/build/node_modules/@japa/spec-reporter
2023-11-24 22:35:41 +01:00
..
2023-11-24 22:35:41 +01:00
2023-11-24 22:35:41 +01:00
2023-11-24 22:35:41 +01:00
2023-11-24 22:35:41 +01:00

@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()]
})