0.0.0 • Published 8 years ago

mocha-markdown-extended-reporter v0.0.0

Weekly downloads
6
License
ISC
Repository
github
Last release
8 years ago

mocha-markdown-extended-reporter

extended the base mocha-markdown reporter

Npm Version(https://img.shields.io/npm/v/mocha-markdown-extended-reporter .svg) Build Status(https://travis-ci.org/gabrielcsapo/mocha-markdown-extended-reporter .svg?branch=master) Dependency Status(https://david-dm.org/gabrielcsapo/mocha-markdown-extended-reporter .svg) [devDependency Status(https://david-dm.org/gabrielcsapo/mocha-markdown-extended-reporter /dev-status.svg)](https://david-dm.org/gabrielcsapo/mocha-markdown-extended-reporter #info=devDependencies) npm license(https://img.shields.io/npm/l/mocha-markdown-extended-reporter .svg) npm(https://img.shields.io/npm/dt/mocha-markdown-extended-reporter .svg?maxAge=2592000) npm(https://img.shields.io/npm/dm/mocha-markdown-extended-reporter .svg?maxAge=2592000)

install

npm install mocha-markdown-extended --save-dev

usage

mocha -R mocha-markdown-extended-reporter

ouput

markdown extended

should be fast ✓. 15ms.

setTimeout(function() {
		done();
	}, 10);

should medium ✓. 503ms.

setTimeout(function() {
		done();
	}, 500);

should be slow ✓. 1.003s.

setTimeout(function() {
		done();
	}, 1000);

should throw ✖. 0.

throw 'hi';