Piotr Płaczek
Piotr Płaczek
> Hey this is nice! @piotrpdev > > I'm getting back into things, I love some of the stuff you've done, I have a branch that re-organizes things up a...
I've also been having this issue and it's really annoying, they're probably not going to fix it though.
I'm not sure if there is a good solution for this. Here is the code that produces the beep on Linux: https://github.com/electron/electron/blob/433d6c33d87b62eab2e920d7b74af9ab3e397f62/shell/common/platform_util_linux.cc#L394-L404 The code tries to: - Send a beep...
> This could be caused by the local clock time on the machine being off by a small amount. Could you use [time.is](https://time.is/) to check? Seems so:  My machine...
Got the same issue :/
> I'm also facing this problem, have you solved it now? Nope, I made the issue because I'm too busy working on other things to look into it. If you're...
I tested it just now and the error didn't occur, so probably needs 20+ hours at least of not visiting the course. I did visit another course page like 10...
1. It looks like the test is throwing the wrong type of exception: > _(From: [`org.assertj.core.configuration.PreferredAssumptionException.AUTO_DETECT`](https://javadoc.io/doc/org.assertj/assertj-core/3.27.6/org/assertj/core/configuration/PreferredAssumptionException.html#AUTO_DETECT))_ > > AssertJ will try to build the exception to throw in this order:...
Hmm, I'm not sure what the best way to do that would be. - We can add this to all classes that use `Assumptions`: ```java static { Assumptions.setPreferredAssumptionException(PreferredAssumptionException.JUNIT5); } ```...
Rob Y. suggested upgrading to the recently released Testcontainers 2.x which removes JUnit 4. That's definitely the best approach so I'll try that. See https://github.com/kroxylicious/kroxylicious-junit5-extension/pull/556 and https://github.com/kroxylicious/kroxylicious/pull/2985.