Richard Tzanov

Results 3 issues of Richard Tzanov

I've been trying to use the `graphql-iso-date` package with `graphql-s2s` for `DateTime` formatting on types and get this error: `TypeError: Cannot read property 'directive' of null` Is this a known...

### Describe the Bug I'm using Jest and React Testing Library to test clicking on handles and making edge connections between nodes. When I use `await user.click(screen.getByTestId(''));` in my test...

topic:testing

I have a Zod schema like this: ``` z.array( z .object({ value: z.string(), primary: z.boolean() }) .refine( ({ primary, value }) => { return !(!primary && value === ''); },...

enhancement