crrobinson14 / mocha-markdown-extended-reporter

🚫 extends the base mocha-markdown reporter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DEPRECATED: THIS WILL NO LONGER BE UNDER DEVELOPMENT

mocha-markdown-extended-reporter

πŸ’Ό extends the base mocha-markdown reporter

Npm Version Build Status Dependency Status devDependency Status npm npm

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';

About

🚫 extends the base mocha-markdown reporter


Languages

Language:JavaScript 100.0%