sumanjs / suman-reporters

All official Suman reporters go here.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Official Suman reporters

This repo contains reporters for both Node.js and the browser. Suman supports asynchronous reporters, so that reporters can persist data using async I/O, etc, if they wish.


If you are using a language other than JS with the Suman runner:
what you do is write TAP or TAP-JSON to stdout in the language of your choice, and the Suman runner will capture the stdout from your child process, and then use one of these reporters to report the output in a more human friendly format in the parent process (the Suman runner is the parent process).

Installing

$ npm install suman-reporters

Loading reporters

Suman reporters in this package can be imported like so:

// typescript
import r = require('suman-reporters/modules/tap-reporter');
// js
const r = require('suman-reporters/modules/tap-reporter');

To use a reporter with the suman command line, the API is like so:

$ suman --reporter="tap-reporter"

You can load multiple reporters like so:

$ suman --reporter="tap-reporter" --reporter="std-reporter"

The loading logic is as follows:

  1. First suman will attempt to require('tap-reporter')
  2. If the above fails, then it will attempt to require('suman-reporters/modules/tap-reporter')

So for "max efficiency", you could just use this:

$ suman --reporter="suman-reporters/modules/tap-reporter"

Anatomy of a Suman-compliant reporter:

Export a function, either with module.exports or exports.default.

This function takes 4 arguments:

exports.default = function(s, o, expct, c){
  
   // s is an event emitter instance
   // o is a copy of the suman command line options as a plain object
   // expct is a plain object representing the expected pass/fail/skipped/stubbed counts
   // c is a socket.io client

}

Take a look at the modules directory for up-to-date samples; TypeScript will aid in getting the types right.

About

All official Suman reporters go here.

License:MIT License


Languages

Language:JavaScript 49.7%Language:TypeScript 44.8%Language:HTML 5.1%Language:Shell 0.3%