Sha256: 27bce563bf37fe8cb02d27a26abfa2f2a92b2af1bef739ab024a4ad7417bf7d0
Contents?: true
Size: 726 Bytes
Versions: 36
Compression:
Stored size: 726 Bytes
Contents
var Buffer = require('buffer').Buffer var test = require('tape') var http = require('../..') test('disable fetch', function (t) { var originalFetch if (typeof fetch === 'function') { originalFetch = fetch } var fetchCalled = false fetch = function (input, options) { fetchCalled = true if (originalFetch) { return originalFetch(input, options) } } http.get({ path: '/browserify.png', mode: 'disable-fetch' }, function (res) { t.ok(!fetchCalled, 'fetch was not called') if (originalFetch) { fetch = originalFetch } res.on('end', function () { t.ok(res.headers['content-type'] === 'image/png', 'content-type was set correctly') t.end() }) res.on('data', function () {}) }) })
Version data entries
36 entries across 35 versions & 13 rubygems