Spec reporter for Japa tests runner
Spec reporter displays a detailed output for the executed tests.
Install the package from the npm registry as follows.
npm i -D @japa/spec-reporter
# yarn
yarn add -D @japa/spec-reporter
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()]
})