Nico Jansen

Results 436 comments of Nico Jansen

I think i've found the issue. Your tests seem to share state. This change: ```diff --- a/server/src/api/service/auth.service.ts +++ b/server/src/api/service/auth.service.ts @@ -68,7 +68,7 @@ const authService = { fullName: verifiedRefreshToken.fullName, };...

Hi @michahell thanks for opening this issue 🙋‍♂️. Also thanks for sharing your build server logs, it is crucial in figuring out what is wrong. I'm pretty sure the cause...

Thanks, I hope that works. Looking through the [tree-kill code](https://github.com/pkrumins/node-tree-kill/blob/master/index.js) it seems that `ps` is the only dependency for linux. I'll also re-open #2448, since that is the cause. I...

Hmm, interesting. Indeed, Stryker runs your tests outside of a tty because it runs your test in a child process. You can mimic the same behavior with this script: ```js...

It's fantastic that you're willing to pick this one up 😁! An excellent place to start is the docs here: https://stryker-mutator.io/docs/stryker-js/guides/create-a-plugin/#high-level-stryker-workings There is a lot of info there, but the...

I hope there is a way for the WRT to choose the browser based on the user's config file. In short: 1. We want to load the WRT config 2....

I've made some more progress. It seems that [wrt supports middlewares](). This would make something like this possible: Code example ```js middleware: [ async (context, next) => { await next();...

Hi @sebiniemann, and welcome. I'm sorry I didn't reply sooner. I've been quite busy and have yet to notice this issue sneaking in. This sounds like an excellent new feature....

Hi @george-kats-e thanks for opening this issue and sharing your configs. Should be a relatively easy fix. @danny12321 if you feel up to it you might want to pick this...

Hmm interesting. I think this is an issue with Jest. Could you try running Stryker with this change in your config? ```diff { "reporters": ["html", "clear-text", "progress"], "packageManager": "npm", "timeoutMS":...