Eric Burel
Eric Burel
For Googlers, "{scope}" is undocumented but works and will print ` (scope)` Notice the additional space Here is my debug formatter: ``` const fileName = `${log.transports.file.fileName}.${process.env.NODE_ENV}`; const isMain = fileName.startsWith("main")...
Ha, Stalebot, we meet again. This issue still happens for us, Firefox is losing context without much debug info nor directions on how to fix this issue. Happy to contribute...
Hi, it would be great to autodetect a few typical frameworks (something that stays maintainable) when an iframe is present, and consider the "screen" to be this iframe and not...
> I think we could achive it with parse rust codes with AST (or something else) and generate TypeScript definition files like how `graphql-code-generator` works. Just for the inspiration, maybe...
Same issue with React Apollo 2.5.2 when running a simple test: ``` const responses = [{ request: { query: gql` mutation createFoo($data: CreateFooDataInput!) { createFoo(data: $data) { data { hello...
Seems related: https://stackoverflow.com/questions/54198589/handling-apollo-server-errors-on-client This error seems to mean that there is actually an underlying failure, eg if your results are not correctly set. In my example I missed an additionnal...
For the record this is how I use it currently: ```ts const updateAppContextCookie = ( appContext: AppContext, path: string, value: string, options: Object = {} ) => { // Update...
I haven't figured a way to manipulate the cookie yet :/ I do a hard replacement based on the string value, which is unsafe in general, as I haven't found...
For the record because it has't been quoted in this discussion: https://github.com/toomuchdesign/next-page-tester This is not for unit testing but integration testing, as it will also trigger data fetching methods. I...
Hi, did you ever solved this one? I am on Python project with the exact same issue, do you know if an update of Python can fix this?