Innocent Abdullahi

Results 5 comments of Innocent Abdullahi

@bejayoharen thank you so much. You just saved me a lot of trouble. Truly their docs is not well explained

There is an easier way to solve this problem. Create a js file to include your globals `//globals.js import jquery from 'jquery'; window.jQuery = jquery; window.jquery = jquery; window.$ =...

Hi @guregu, mocking will become easy when returning interfaces, tho, it's generally advisable to receive interfaces return concrete types. I also had issues with mocking the methods and my solution...

i don't know if this problem has been fixed. But you cannot access DOM in a webworker thats why you can't use document. But there is a workaround. You can...

Once you import the custom DOM, you can go about using the websocket like you will normally do in a web page ```js var socket = new ReconnectingWebSocket(url, protocols, options);...