Joe Gomain Hoyes
Joe Gomain Hoyes
**Describe the bug** Passing an invalid UUID string does not always throw `InvalidValueError` **Reproduction** Include the code that is causing the error: ```typescript import { createClient } from "edgedb"; import...
Please expand the coverage report section of the README to include minimal steps to set up coverage reporting. Such that people with lesser knowledge of babel and loaders can follow....
I have a use case where the order of items in the construction of a tuple type is non-deterministic. To test I currently do: ```ts const tuple = expectTypeOf(); tuple.toMatchTypeOf();...
Thank You for the amazing work put into creating this tool. However, I had to fork this repo in order to make some tweaks to suit my use case. Here...
In `let` and `case` expressions ```purescript test1 a = let { x } = a in x -- parse error from here test2 a = let { x: y }...