awaitility icon indicating copy to clipboard operation
awaitility copied to clipboard

Awaitility is a small Java DSL for synchronizing asynchronous operations

Results 86 awaitility issues
Sort by recently updated
recently updated
newest added

Bumps maven-bundle-plugin from 4.2.1 to 5.1.8. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.felix:maven-bundle-plugin&package-manager=maven&previous-version=4.2.1&new-version=5.1.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies
java

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3.4.1. Release notes Sourced from actions/setup-java's releases. v3.4.1 In scope of this release we updated actions/cache package as the new version contains fixes for caching...

dependencies
github_actions

If fieldIn(obj) is used with a field not in the class of obj but one of its super classes the code generates an internal error Example: ``` public class A...

Hi, Sometimes we need to wait for something if it gonna happen, but it's fine if it's not. "Wait until a condition is true or timeout is reached" semantic, where...

This is a PR to add the ability to customize the error message that is thrown on timeouts, for situations where it would be helpful to have additional details about...

Hello! I would like to see direct support for coroutines (for example, using [Kotlin's `delay`](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/delay.html) instead of `Thread#sleep`).

Bumps [maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 2.10.4 to 3.4.0. Release notes Sourced from maven-javadoc-plugin's releases. 3.3.2 What's Changed [MJAVADOC-530] - Clean up additionalparam documentation by @​marschall in apache/maven-javadoc-plugin#6 [MJAVADOC-538] Filter out 'Picked up'...

dependencies
java

As per the original PR for fail fast, dynamic reason support was included. It was removed in the final merge. IMO it's extremely useful. See: - https://github.com/awaitility/awaitility/pull/193#issuecomment-873116199 Use case: System...

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. Release notes Sourced from actions/checkout's releases. v3.0.0 Update default runtime to node16 v2.4.0 Convert SSH URLs like org-<ORG_ID>@github.com: to https://github.com/ - pr v2.3.5 Update...

dependencies
github_actions

This won't work, I don't know if it doesn't go with the spirit of the library, but I was expecting so. ```java Instant start = Instant.now(); await().during(Duration.ofMillis(250)) // .until(() ->...