Adam Fraser

Results 324 comments of Adam Fraser

@mikail-khan I would say that is a separate issue since that is a point fix that I can probably do myself in the next couple of days versus this is...

@hmemcpy That would be fantastic! I think we should be able to do it without reflect by just adding some methods on runnable specs that let you update the printer,...

Yes. I wonder if it is better to do everything with ASCII characters even though it may not be as artistic but one way or another these messages should definitely...

I'm not sure that this is the correct expectation. Streams are inherently effectual, which means that while streams may be evaluated multiple times that evaluation may produce different results because...

I don't understand your statement that a stream should be repeatable. As the example involving a queue shows, there is no guarantee that evaluating a stream twice will produce the...

Yes, that would be a nice feature. I don't think we can prevent classes from inheriting from `DefaultRunnableSpec` so I think we would need to do something in the SBT...

@mvillafuertem The issue is that `TestClock` checks whether all the fibers are in a suspended state before advancing the clock. This prevents the clock from being adjusted "too early" before...

@mvillafuertem Sorry, what list of fibers are you trying to get? Yes, by creating the `effectBlocking` fiber you are creating another fiber that will not be suspended which will prevent...

Logging of blocking effects will be included.

They do it internally. See [here](https://github.com/scalameta/munit/tree/master/munit/shared/src/main/scala/munit/internal/difflib) We may want to consider doing the same to provide the best possible experience with zero dependencies. It looks like they use the Myers...