Emily

Results 279 comments of Emily

And it's hard to give more advice about the code because I don't understand it :)

@jasonkuhrt QuickCheck doesn't distribute the cases intelligently but it does try to shrink them intelligently so it still works (e.g. if your function fails on a random string with non-ASCII...

That's a really good question, because I don't know the answer :) [after some source-reading] QuickCheck goes the “test method does the reporting” route. Specifically, `Property` is a thing that...

Alright, I guess this makes sense. It's still pretty unexpected that there are situations where I have to write a migration even when the data layout is completely unchanged (as...

Is there a good reason it's not in servant-swagger, or is that simply due to lack of time / something?

Looks like I'm hitting this as well: I'm using the new `client` preset and so my config is called `codegen.ts`.

@capaj here's my config: ```ts // codegen.ts import type { CodegenConfig } from '@graphql-codegen/cli' import { printSchema } from 'graphql' import { schema } from '@lib/graphql/schema' const config: CodegenConfig =...

Update: after upgrading to 1.1.0 I'm getting a different error, see #29.

NB: I think if you switch `nodeLinker` to `pnp`/`pnpm`, Yarn will tell you which dependencies have to be added.