-
vigoo updated
7 months ago
-
When using Expectation.Exactly on zio 1.0.18, if the expectation fails then the rendered error is
```
Assertion failed:
- unsatisfied expectations
```
(notice there is not a list of expectations tha…
-
got a CI failure on https://github.com/zio/zio/pull/4230 which is entirely unrelated to the STM work that I was doing - for a change, it actually named a test instead of a generic timeout error. cc @i…
-
Although I believe Graal Native should be our main focus given the large investment it has and consistently superior performance now with PGO when compared to Hotspot, Scala Native can still offer an …
-
Taking an enum like this:
```scala
enum Credentials:
case UserPassword(username: String, password: String)
case Token(jwt: String)
```
I need to be able to parse the next 2 jsons:
```json…
-
When using `TestAspect.beforeAll` env vars don't get set using `TestSystem.putEnv`.
I understand that ZIO-test provides each test with a separate copy of the test environment, perhaps we can set t…
-
I get stack overflow (zio 2.0.0-RC2, scala 2.13.8) with following code
```
import zio.test.{ZIOSpecDefault, assertTrue}
object SmartAssertHatesXml extends ZIOSpecDefault {
override def spec …
-
The `mapMPar - awaits children fibers properly` test is showing significant flakiness on the `series/2.x` branch. At first I thought it could be related to the reimplementation of `Semaphore` in terms…
-
`TestClock` semantics has changed in RC18 in order to fix an issue with `Schedule`s in forked fibers https://github.com/zio/zio/pull/2677 . I think the new semantics has a different issue. It violates…
-
Hi all,
I'm trying to write a [zio-actor for the originally Akka based Petri Net implementation Kagera](https://github.com/nikolakasev/kagera/pull/9/files).
The Akka implementation does one thing …