JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8011
  • Score
    100M100P100Q137797F
  • License MIT

Spec reporter for japa test runner

Package Exports

  • @japa/spec-reporter

Readme

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