1.1.1 • Published 9 years ago

nightwatch-mongo-reporter v1.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

nighwatch-mongo-reporter

A custom reporter for the nighwatch project. Storing all results in a mongoDB

Build Status Git Status npm

How to use it with nighwatch

You use the reporter as a custom reporter You define the reporter inside of the globals.js file of nightwatch

var mongoreport = require('nightwatch-mongo-reporter');
var mongo = new mongoreport({
    ip:"127.0.0.1:27017",
    dbname:"testdb",
    collection:"testcollection",
    customObject: null
});


module.exports = {
    reporter:mongo.fn
};

The custom object

The custom object is a way for you to add arbitrary information to your results object The reporter will take the nighwatch results and append it to the customObjects property results

1.1.1

9 years ago

1.1.0

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago