Nico Jansen

Results 373 comments of Nico Jansen

Aha, I found what the issue was. I was indeed doing something wrong 😅 Providing callbacks to karma's methods is _really_ important. I didn't provide a callback to `karma.runner.run`. If...

> UPD Oh, the EXECUTING_DISCONNECTED state will be gone :( Hmm, my current implementation is this: ```ts if (browser.state.toUpperCase().includes('DISCONNECTED')) { // Restart the browser for next run this.karmaServer.get('launcher').restart(browser.id); this.browserIsRestarting =...

Yeah unpkg isn't the most reliable CDN out there. Might be time to switch over to a locally served one, or include it in the JS bundle. Feel free to...

True, we would get new updates through dependabot

Yes true. Maybe add a troubleshooting guide, as we did for StrykerJS: https://stryker-mutator.io/docs/stryker-js/troubleshooting

As a workaround, I've created this alternative register file. ```js const tsConfig = require("./tsconfig.json"); const tsConfigPaths = require("tsconfig-paths"); const path = require("path"); tsConfigPaths.register({ baseUrl: path.resolve(tsConfig.compilerOptions.baseUrl || '', tsConfig.compilerOptions.outDir || ''),...

@lbeschastny wouldn't your solution fail in some use cases when the stream does not support `stream.clearLine`, `stream.cursorTo`, etc? Or simply not clear the line? For example when using jenkins, travis...

Thanks for the response. It is late, but I don't have any illusion of entitlement, no problem whatsoever 😊 We've implemented the error reporting without `better-ajv-errors` at the moment, but...

How about adding it as an option? Maybe `{ filterShadowingErrors: true }` (default false)?

I'd be happy to test beta releases out in our [StrykerJS e2e test suite](https://github.com/stryker-mutator/stryker-js/tree/master/e2e/test). Especially if it saves us having to fix breaking issues for users later on 😅 Q:...