UNPKG

fh-fhc

Version:

A Command Line Interface for FeedHenry

16 lines (15 loc) 284 B
var nock = require('nock'); module.exports = nock('https://apps.feedhenry.com') .filteringRequestBody(function() { return '*'; }) .get('/box/api/status', '*') .reply(200, { "status": "ok", "summary": { "amqp": "ok", "db": "ok", "cache": "ok", "git": "ok" } })