Nico Jansen

Results 436 comments of Nico Jansen

This sounds like this known issue: https://stryker-mutator.io/docs/stryker-js/troubleshooting/#all-mutants-survive---jest-runner Could you try enabling [`--inPlace`](https://stryker-mutator.io/docs/stryker-js/configuration/#inplace-boolean)? That should do the trick. Note: using `--inPlace` doesn't allow you to change your code when StrykerJS is...

Wow, great find and workaround, @kal-rein. I'm very glad to see you were able to use the new 'ignore-plugin' type. These kinds of use cases were exactly why I added...

> I can give it a try in the upcoming days and implement this workaround as a plugin when the option `karma.projectType` equals `angular-cli`. Although, that would only fix the...

Great find 👏 How about the start of the regex? I would expect a `^` as well as a `$`.

The main takeaways from that conversation: 1. You're running StrykerJS with `--incremental`. This means most of the time is spent on the initial test run to calculate the test&mutant coverage...

Hi @jaspervdveen , welcome! This feature would be very cool indeed! I would love it if this tool could support multiple flavors of Stryker. To do that, I would suggest...

Blocked by: - https://github.com/domenic/sinon-chai/issues/160 - https://github.com/domenic/chai-as-promised/issues/281 Note: Both dependencies could be removed if we rewrite some tests.

Hi Jim, you shouldn't install the `stryker-cli` locally. Please install stryker itself: ``` npm i -D @stryker-mutator/core ``` The core package comes with its own `stryker` binary, so `npx stryker...

@odinvanderlinden, you've investigated this 😇