Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

shouldjs/http

Open more actions menu

Repository files navigation

should.js http assertions

Build Status

This module can be usefull for asserting on node standard http modele request and response.

Install

npm install should-http --save-dev
require('should-http');

That row patch your should instance adding assertions. With mocha you can use it via -r switch.

This module have built in formatting for node http IncommingMessage's.

.status(code)

Asserts that .statusCode is code:

res.should.have.status(200);

.header(field[, value])

Asserts that a .headers object with field and optional value are present:

res.should.have.header('content-length');
res.should.have.header('Content-Length', '123');

.json()

Assert that Content-Type is "application/json"

res.should.be.json()

.html()

Assert that Content-Type is "text/html"

res.should.be.html()

.xml()

Assert that Content-Type is "application/xml"

res.should.be.xml()

.contentType(type [, charset])

Assert that Content-Type is a given type with optional charset

res.should.have.contentType('application/xml');

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.