test-server

Easy testing of a HTTP server

6 个版本
安装
npm install test-server
yarn add test-server
pnpm add test-server
bun add test-server
README

test-server build status

Easy testing of a HTTP server

Example

var testServer = require("test-server")
    , assert = require("assert")

testServer(function (req, res) {
    res.end("beep")
}, function (request, done) {
    request("/", function (err, res, body) {
        assert.equal(body, "beep")
        done()
    })
})

Installation

npm install test-server

Tests

make test

Contributors

  • Raynos

MIT Licenced

版本列表
0.2.1 2013-11-25
0.1.3 2013-04-24
0.1.2 2013-04-24
0.1.1 2013-04-04
0.1.0 2012-11-29
0.0.1 2012-07-15