Marko Schulz

Results 20 comments of Marko Schulz

While it is true, that you cannot do a cross-origin XMLHttpRequest, it is possible to use JavaScript to do a cross-origin HTTP POST request, even with the content-type `application/json` using...

As the error message says, I think you need to set the environment variable `npm_config_runtime` (and also `npm_config_target`). As an alternative to the environment variables, you can also set the...

I just tripped over this too, thanks for describing it here! Until this is merged which workarounds do you use? I currently consider writing some additional scripts which then run...

The `toContain…` matchers also check for the existence of an element and I would even place the `toBeVisible` in that category, since from the point of view of an user,...

Yes, I had exactly similar thoughts, also being unsure what to call the third category and whether to place “enabled” in there because of buttons. But putting it in there...

> `toHaveTextContent` ~is~ should just be `toHaveProperty('textContent', 'foo')` No, for two reasons: `toHaveTextContent` is so important, that it deserves a special matcher. Also, it does do additional normalising of the...

Looking at the issues above, many of them are already solved by the new implementation anyhow, right? Of course it still would be fine to fix more of them!

For whoever comes here, like me, in search for an answer to why instances of Map and Set show up as empty objects: I needed to set [the `serialize` option](https://github.com/reduxjs/redux-devtools/blob/bef71f4a0eb7335ee942f25c6a2ca5bf81bff5e5/extension/docs/API/Arguments.md#serialize)...

> This would probably need some addition to our Electron desktop shell ([here](https://github.com/httptoolkit/httptoolkit-desktop/)) to implement a new file picker that _can_ pick binaries from within .app bundles, and to then...

Thanks, I will take a look at those places. I was looking for usage of `ipcMain` and `ipcRenderer`, since that is [the common Electron pattern I was aware of for...