Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bali182/cathedra-default-presenter

Default presenter for cathedra
https://github.com/bali182/cathedra-default-presenter

Last synced: 12 days ago
JSON representation

Default presenter for cathedra

Awesome Lists containing this project

README

        

# cathedra [![Build Status](https://travis-ci.org/bali182/cathedra-default-presenter.svg?branch=master)](https://travis-ci.org/bali182/cathedra-default-presenter)

Default presenter for [cathedra](https://github.com/bali182/cathedra)

### Usage

```js
const defaultPresenter = require('cathedra-default-presenter')
const { benchmark, suite } = require('cathedra')

const benchResult = benchmark(someFunction)
const suiteResult = suite(
someFunction,
otherFunction,
thirdFunction
)

const presenter = defaultPresenter({
log: console.log.bind(console)
})

presenter(benchResult)
presenter(suiteResult)
```