Just to praise Power Assert a bit… Code: ```asser...
# power-assert
c
Just to praise Power Assert a bit… Code:
Copy code
assertEquals(6.right(), 5.successful().withProgress(loading(0.2)).toEither())
Before:
Copy code
Expected :Either.Right(6)
Actual   :Either.Right(5)
With Power Assert:
Copy code
assertEquals(6.right(), 5.successful().withProgress(loading(0.2)).toEither())
               |          |            |            |             |
               |          |            |            |             Either.Right(5)
               |          |            |            Loading(20%)
               |          |            Success(value=5, progress=Loading(20%))
               |          Success(value=5)
               Either.Right(6)
Expected :Either.Right(6)
Actual   :Either.Right(5)
🚀 2