Skip to content

Commit

Permalink
Add an ignored test
Browse files Browse the repository at this point in the history
  • Loading branch information
Atry committed Dec 11, 2021
1 parent 4b42a70 commit 4f0e2c8
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,19 @@ final class taskSpec extends AsyncFreeSpec with Matchers {
!task2 should be("try: my exception")
})

"try with Each" ignore {
val listTask = Task {
val x =
try {
10 * !Each(List(1, 2))
} finally {}
List(x)
}
Task.toFuture(listTask).map {
_ should be(List(10, 20))
}
}

"empty try" in {
val logs = ArrayBuffer.empty[String]

Expand Down

0 comments on commit 4f0e2c8

Please sign in to comment.