eventsourcemock icon indicating copy to clipboard operation
eventsourcemock copied to clipboard

Mock EventSource in tests.

Results 4 eventsourcemock issues
Sort by recently updated
recently updated
newest added

Hello, I have created an EventSource in a file `configJSDom.js`: ``` import EventSource from 'eventsourcemock'; Object.defineProperty(window, 'EventSource', { value: EventSource, }); ``` It was used by jest and in my...

Hello! I noticed NPM registry has more versions for this package than the tags available here on GitHub. Was that intended? The result of running `npm info eventsourcemock time` is...

Compared to the current docs, when one creates a React app with the now standard `npm create-react-app`, the way to integrate this library will rather be in `src/setupTests.js` : ```...