Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielcsapo/mocha-markdown-extended-reporter
🚫 extends the base mocha-markdown reporter
https://github.com/gabrielcsapo/mocha-markdown-extended-reporter
deprecated markdown mocha reporter
Last synced: 29 days ago
JSON representation
🚫 extends the base mocha-markdown reporter
- Host: GitHub
- URL: https://github.com/gabrielcsapo/mocha-markdown-extended-reporter
- Owner: gabrielcsapo
- Created: 2016-07-13T16:07:11.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-17T02:51:01.000Z (almost 7 years ago)
- Last Synced: 2024-10-13T20:44:45.550Z (about 1 month ago)
- Topics: deprecated, markdown, mocha, reporter
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> DEPRECATED: THIS WILL NO LONGER BE UNDER DEVELOPMENT
# mocha-markdown-extended-reporter
> 💼 extends the base mocha-markdown reporter
[![Npm Version](https://img.shields.io/npm/v/mocha-markdown-extended-reporter.svg)](https://www.npmjs.com/package/mocha-markdown-extended-reporter)
[![Build Status](https://travis-ci.org/gabrielcsapo/mocha-markdown-extended-reporter.svg?branch=master)](https://travis-ci.org/gabrielcsapo/mocha-markdown-extended-reporter)
[![Dependency Status](https://starbuck.gabrielcsapo.com/badge/github/gabrielcsapo/mocha-markdown-extended-reporter/status.svg)](https://starbuck.gabrielcsapo.com/github/gabrielcsapo/mocha-markdown-extended-reporter)
[![devDependency Status](https://starbuck.gabrielcsapo.com/badge/github/gabrielcsapo/mocha-markdown-extended-reporter/dev-status.svg)](https://starbuck.gabrielcsapo.com/github/gabrielcsapo/mocha-markdown-extended-reporter#info=devDependencies)
[![npm](https://img.shields.io/npm/dt/mocha-markdown-extended-reporter.svg)](https://github.com/gabrielcsapo/mocha-markdown-extended-reporter)
[![npm](https://img.shields.io/npm/dm/mocha-markdown-extended-reporter.svg)](https://github.com/gabrielcsapo/mocha-markdown-extended-reporter)## install
```
npm install mocha-markdown-extended --save-dev
```## usage
```
mocha -R mocha-markdown-extended-reporter
```## ouput
# markdown extended
should be fast ✓.
15ms.```js
setTimeout(function() {
done();
}, 10);
```should medium ✓.
503ms.```js
setTimeout(function() {
done();
}, 500);
```should be slow ✓.
1.003s.```js
setTimeout(function() {
done();
}, 1000);
```should throw ✖.
0.```js
throw 'hi';
```