Skip to content

Instantly share code, notes, and snippets.

@neverendingqs
Created August 17, 2018 02:06
Show Gist options
  • Save neverendingqs/b45522f3d9b8405999433bd3239b30cf to your computer and use it in GitHub Desktop.
Save neverendingqs/b45522f3d9b8405999433bd3239b30cf to your computer and use it in GitHub Desktop.
2017/03/13/ensure-all-nock-interceptors-are-used.html - simple-example-nock.js
'use strict';
const assert = require('chai').assert;
const nock = require('nock');
const request = require('supertest');
const uniqueValue = 'da64daaf-182b-4af6-a4af-09727bf8d5aa';
const app = require('../../src/server');
describe('server', function() {
it('GET / once', function() {
nock('https://www.example.com')
.get('/')
.reply(200, uniqueValue);
return request(app)
.get('/')
.then(res => assert.equal(res.text, uniqueValue));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment