You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I sometimes get test results to show in incorrect location in the tree. I think it only affects test results that are failing.
Tests are structured like so:
objectMySpecextendsZIOSpecDefault {
overridedefspec:Spec[TestEnvironment&Scope, Any] =
suiteAll("Outer") {
suiteAll("Inner") {
test("Test") {...}
test("Test2") {...}
// I usually get random tests from elsewhere to show under the dynamic group// For example, Test2 might once in a while popup under dynamic collection
suite("Dynamic test collection"){
List(condition1, condition2).map(cond => test("test for $cond"){...})
}
}
}
}
I'm on ZIO 2 and Scala 3.
SBT has testFrameworks += TestFrameworks.ZIOTest.
Test parallelism is enabled.
Test reporter is configured to show "Passed", "Ignored" and sort by "Suites always on top".
The text was updated successfully, but these errors were encountered:
sorry a bit confusing wording, I did not disable it, ZIO 2 runs tests in parallel by default.
I also did not disable parallel tests in SBT, but I doubt this is related, since it is happening when executing test suite inside IntelliJ.
I sometimes get test results to show in incorrect location in the tree. I think it only affects test results that are failing.
Tests are structured like so:
I'm on ZIO 2 and Scala 3.
SBT has
testFrameworks += TestFrameworks.ZIOTest
.Test parallelism is enabled.
Test reporter is configured to show "Passed", "Ignored" and sort by "Suites always on top".
The text was updated successfully, but these errors were encountered: