Skip to content

Instantly share code, notes, and snippets.

@cybic
Created January 8, 2019 12:59
Show Gist options
  • Save cybic/a3d96815d9699901244176b26bc61019 to your computer and use it in GitHub Desktop.
Save cybic/a3d96815d9699901244176b26bc61019 to your computer and use it in GitHub Desktop.
Sinon FakeServer fail on not covered
beforeEach(() => {
fake = sinon.fakeServer.create();
// Fail on requests not covered by fakeserver
fake.respondWith(xhr => {
fail('FakeServer does not provide any result for URL ' + xhr.url)
});
fake.respondImmediately = true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment