express-test-bot

0.3.1 • Public • Published

node-express-test-bot

A little helper for test environments, that runs an express server, executes queries against it and kills the server afters.

Installation

npm install express-test-bot

API

Load the library:

var ExpressTestBot = require('express-test-bot')

Default usage:

new ExpressTestBot().get('/', function(err, stdout, stderr) { })

With options:

new ExpressTestBot({
  // app: path to the file which starts the express server
  // default value: process.cwd() + '/app.js'
  app: 'server.js',
 
  // debug: log some more information to stdout
  // default value: false
  debug: true
}).get('/', {
  // toFile: writes the stdout output into a file. useful for images/binary files
  // default value: null
  toFile: 'image.jpg'
}, function(err, stdout, stderr) {
 
})

License

Hereby placed under MIT license.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i express-test-bot

    Weekly Downloads

    2

    Version

    0.3.1

    License

    MIT

    Last publish

    Collaborators

    • sdepold
    • lucaong