GithubHelp home page GithubHelp logo

Comments (8)

indexzero avatar indexzero commented on May 21, 2024

@AvianFlu is working on refactoring the jitsu tests to use nock and right now we have to specify a single response header on every reply: { 'x-powered-by': 'Nodejitsu' }

from nock.

pgte avatar pgte commented on May 21, 2024

Yes, it's possible, for example:

.get('/')
.reply(statusCode, body, headers)

from nock.

indexzero avatar indexzero commented on May 21, 2024

@pgte Right, but I want to do it once and have those headers in every reply

nock('http://nodejitsu.com')
  .defaultHeaders({ 'x-foo-header': 'bar' })
  .get('/')
    .reply(200) // Will still receive 'x-foo-header'
  .post('/upload', { 'somedatafromauserorsomething': true })
    .reply(200) // Will still receive 'x-foo-header'

It that possible? I didn't see a method like .defaultHeaders()

from nock.

pgte avatar pgte commented on May 21, 2024

@indexzero No, that doesn't exist yet, but should be easy to add.

from nock.

pgte avatar pgte commented on May 21, 2024

I'll be doing that.

from nock.

pgte avatar pgte commented on May 21, 2024

Now supported in v0.10.0, available in NPM.

from nock.

pgte avatar pgte commented on May 21, 2024

It's:

scope
  .defaultReplyHeaders(headers)
  // ...

Also documented new feature in the README.

from nock.

lock avatar lock commented on May 21, 2024

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue and add a reference to this one if it’s related. Thank you!

from nock.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.