Zock is an HTTP mocking library for both node.js and the browser
Similar to Nock (but isomorphic)
Contributions weclome!
Install
$ npm install zock
Usage
// register coffee-scriptvar request = var zock = zock // permanent browserwindowXMLHttpRequest = zock XMLHttpRequest windowfetch = zock // permanent node.jshttp = require 'http'httprequest = zock
base({String} path)
Set the base url that the following routes will be based from
get({String} route)
Begin defining a mocked GET request
post({String} route)
Begin defining a mocked POST request
put({String} route)
Begin defining a mocked PUT request
reply({String} [status]=200, {Object|Function} response)
Define reply for the previously defined mock request
logger({Function} logger)
Bind a logging function for debugging
zock
XMLHttpRequest
Return special XMLHttpRequest stub object based on previous setup
fetch
Return special fetch stub object based on previous setup
nodeRequest
Return special http.request stub object based on previous setup
withOverrides({Function} testCode)
runs the function passed in with global overrides enabled, and removes after the function returns
Supports promises
Contributing
$ npm -d install$ npm test
Changelog
0.1.3 -> 0.2.0
- rename withOverride to withOverrides
- add window.fetch support