Holger Benl

Results 160 comments of Holger Benl

I see that you have this problem in your Pendulum project. I cloned it but still could not reproduce the problem. Could you create a branch and push the exact...

I still can't reproduce: ![Peek 2019-12-07 18-48](https://user-images.githubusercontent.com/16060807/70378649-3c091780-1923-11ea-9730-a5bacb384025.gif) You could try creating a fresh clone of your project in a new folder to see if it works there. If it works,...

Wow, that's impressive! However, since the adapter works so differently in HMR mode, I think it would make sense to keep your forked extension separate - especially because I don't...

I was also planning to use some kind of dependency analysis to retire only affected tests when a non-test file changes - when I find the time to do it....

@gchovanyecz why do you try to `require` the `describe` function anyway? These functions are defined as globals when you run your tests with `mocha`, so there's usually no need to...

> We tried using "mochaExplorer.require": "esm" but it fails to find this module. That's exactly what you need to do to use `esm` in your tests. Where is the `esm`...

> can I somehow configure test explorer per project? Yes, if you use a [multi-root workspace](https://code.visualstudio.com/docs/editor/multi-root-workspaces) you can add VS Code settings for each root folder. > can I add...

> Does MochaTestExporer touch tsconfig.json somehow or it is transaprent? It's completely transparent - the Mocha Explorer doesn't know anything about Typescript (and hence `tsconfig.json`), it just uses the sourcemaps...

It looks like you're trying to connect to MPD using an HTTP client!? Are you using `mpc-js-web`? If not, what are you doing to connect to MPD using `mpc-js-node`?

> So I ran npm run test src/test/testWebpackSourceMaps.ts and I'm still seeing errors: That's not expected, some of the failures seem mac-specific, I'll have a look at them later. >...