Skip to content

Instantly share code, notes, and snippets.

@cybic
Created February 22, 2018 11:41
Show Gist options
  • Save cybic/62a2a5831bb04ed1b8e7cc7d5bcc8f74 to your computer and use it in GitHub Desktop.
Save cybic/62a2a5831bb04ed1b8e7cc7d5bcc8f74 to your computer and use it in GitHub Desktop.
Get the URL of a failing SinonJS Fake Server request
// Put this before every other fake.respondWith() to make this a 404 fallback
fake.respondWith(xhr => {
console.log(xhr.url);
return [404, {}, 'Not found'];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment