Coder Social home page Coder Social logo

Comments (8)

ctimmerm avatar ctimmerm commented on May 21, 2024 1

Calling onAny without arguments is only supported since 1.7.0.

from axios-mock-adapter.

ctimmerm avatar ctimmerm commented on May 21, 2024 1

Yeah, the feature was included with some other, larger changes. I'll update the release notes to mention it.

from axios-mock-adapter.

ctimmerm avatar ctimmerm commented on May 21, 2024 1

OK, thanks for the explanation, now I get it. I'll fix it

from axios-mock-adapter.

chipit24 avatar chipit24 commented on May 21, 2024

Ah, thanks! I looked through the release log but didn't see it referenced since v1.1.0!

from axios-mock-adapter.

chipit24 avatar chipit24 commented on May 21, 2024

I updated, and now I'm seeing something strange. onAny now catches all requests, but if the request uses an absolute URL it truncates/modifies the url property of the config that's passed into the function.

Following the example above, if I change my onAny call to...

.onAny().reply((config) => {
  console.log(config.url);
  return [500];
});

... and make a request to http://example.com/bar, an empty string is printed to the console. http://example.com/foobar prints r.

Note that I have set a base URL for my axios instance. I also can't seem to match against absolute URLs when a base URL is set.

from axios-mock-adapter.

ctimmerm avatar ctimmerm commented on May 21, 2024

If I add the following example to basics.spec.js, it works as expected:

  it('works with absolute URLs', function() {
    mock.onAny().reply(function(config) {
      console.log(config.url); // logs "http://www.example.org/bar"
      return [200];
    });

    return instance.get('http://www.example.org/bar')
      .then(function(response) {
        expect(response.status).to.equal(200);
      });
  });

I'm not really sure what's different in the code you've pasted. Could you maybe start from the above test and change it to resemble the code that's failing for you?

from axios-mock-adapter.

chipit24 avatar chipit24 commented on May 21, 2024

@ctimmerm In the example spec you gave, add instance.defaults.baseURL = 'http://www.foobar.com'; to the beginning and you'll see that what gets logged is g/bar, instead of the expected http://www.example.org/bar.

from axios-mock-adapter.

ctimmerm avatar ctimmerm commented on May 21, 2024

I just pushed a new release, can you check if we're all good now?

from axios-mock-adapter.

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.