I encountered an issue while testing my axios based service where Jest is throwing a
ReferenceError: FormData is not defined
I thought FormData should be available in jsdom, but I can't figure out why it's not working?
This test is meant to be an integration-test, so it needs to make a real request to the rest backend. I don't want to mock the call...