Await until assertJ asserts true on database update

542 Views Asked by At

I am running a test that sends some data to a database and checks it's all been inserted properly. Depending on the machine, this can take varying amounts of time. I am using awaitly/assertj. Is there a way of rerunning the tests up to a maximum time to ensure im giving enough time for the database to update? Something akin to:

awaitly.untilAssertionsAreTrue(() -> {
  assertThat(expected).isEqualTo(database);
});

I have tried untilAsserted but it just runs instantly.

0

There are 0 best solutions below