1. 3
    Mock an HTTP request using Nock while unit testing
    1m 15s

Mock an HTTP request using Nock while unit testing

InstructorJosh Mock

Share this video with your friends

Send Tweet

When testing functions that make HTTP requests, it's not preferable for those requests to actually run. Using the nock JavaScript library, we can mock out HTTP requests so that they don't actually happen, control the responses from those requests, and assert when requests are made.