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 have a document which simplifies to the following:
```elm
import Json.Decode as Decode
Decode.decodeString Decode.int "1"
--> Ok 1
```
```elm
1 + 2
--> 3
```
In this document, elm-verify-examples 4.0.1 will only generate tests for the 1 + 2 block, not the Json.Decode block. Further, it totally skips this block regardless of where it lands in the document:
```elm
add : Int -> Int -> Int
add x y =
x + y
add 1 2
--> 3
```
I'm happy to help, either with more info about my use case (parsing/verifying all the code examples in a book) or a fix.
The text was updated successfully, but these errors were encountered:
I have a document which simplifies to the following:
In this document,
elm-verify-examples
4.0.1 will only generate tests for the1 + 2
block, not theJson.Decode
block. Further, it totally skips this block regardless of where it lands in the document:I'm happy to help, either with more info about my use case (parsing/verifying all the code examples in a book) or a fix.
The text was updated successfully, but these errors were encountered: