Skip to content

Simple logging support using the standard Mocha reporting style

License

Notifications You must be signed in to change notification settings

hash-bang/mocha-logger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mocha-logger

Simple logging support using the standard Mocha reporting style.

This module is designed to work as an inline reporter for long running Mocha tasks.

Examples

var mlog = require('mocha-logger');

mlog.log('This is .log()');
mlog.pending('This is .pending()');
mlog.success('This is .success()');
mlog.error('This is .error()');