I have created integration style tests in my application that uses mg-api-js. I am mocking the actual geotab API servers by running a local http server that has mocks setup to respond as the geotab API servers would. However, I had to run my local mock http server using https. This complicates my integration test setup significantly since now certificates are required and all the complexities required when using https vs http. Since I'm running locally entirely on a developer machine running http is preferred.
It seems that this sdk is hard coded to use http. Would it be possible to allow the choice of http vs https to be chosen by clients of this SDK so that I can remove this additional complexity from my tests?
Thank you!