expressjs-unit-tests

0.0.7 • Public • Published

Expressjs-unit-tests

Build Status

Install

$npm install expressjs-unit-tests

Use in your tests

Use this function for run unit tests unitTests.testGenerate(express_app,PORT, cb);


var unitTests = require('expressjs-unit-tests');
var app = require('../server.js').express_app();

unitTests(app,3300, function(){});

Use with mocha

Use this function for run unit tests unitTests.testGenerate(express_app,PORT, cb);


var unitTests = require('expressjs-unit-tests');
var app = require('../server.js').express_app();
describe('Express untits Tests ', function(){
    unitTests.testGenerate(app,3300, function(){});
});

TODOs

  • Add vars for specific urls
  • Manage Post/PUT/DEL
  • Manage auth

Readme

Keywords

none

Package Sidebar

Install

npm i expressjs-unit-tests

Weekly Downloads

11

Version

0.0.7

License

MIT

Last publish

Collaborators

  • adelskott