Minimal dot reporter for Japa tests runner
The dot reporter display an icon for each of the test executed.
Install the package from the npm registry as follows.
npm i -D @japa/dot-reporter
# yarn
yarn add -D @japa/dot-reporter
# pnpm
pnpm add -D @japa/dot-reporterYou can use the dot reporter with the @japa/runner as follows.
import { configure } from '@japa/runner'
import { dotReporter } from '@japa/dot-reporter'
configure({
reporters: [dotReporter()]
})