Hugh Boylan
Hugh Boylan
Perfect, thank you. That summarizes the issue. I thought `libcurl.so.4` might be required by the base `apollo-router`, but it may actually be required by something in my plugin so I...
Thank you for checking. I haven't been able to locate the library to copy from the build image. If you think this is a dependency of another dependency then we...
@Geal I'm encountering the same thing while trying to adopt Apollo Router with gqlgen for the subgraph. I would prefer to send the file upload operation through the router so...
Yes, I think it would be ideal to send a pre-signed upload URL for the client to upload directly to cloud storage. It just requires more complicated logic around knowing...
I'm having the same issue on Windows 8.1 Also tried running jest with the `-i` or `--runInBand` flag (as per [this Jest issue](https://github.com/facebook/jest/issues/3079)), which does not work.
@maustand Thanks for the reply. Using the same code base on Mac last night, I was able to run all of the `generator-rest` tests in ~8s. Still having the same...
So commenting out `mockgoose` in `test/setup.js` allows `jest -i` to run properly. Neither v6.0.8 (generator default) or v7.3.3 (latest release) of mockgoose are working. Do you know a version that...
Thanks for looking into it. Windows always has the best Node bugs. ;) For now, running Jest in serial without Mockgoose is a viable solution. It didn't work for me,...
Hey, I figured out why Mockgoose isn't working! ✖️ ```es6 import mockgoose from 'mockgoose' import mongoose from 'mongoose' beforeAll(async () => { await mockgoose(mongoose) mongoose.connect(mongo.uri) }) ``` ✔️ ```es6 import...
@marcoshuck I forget the specific reason for that error, but I think it had something to do with the mockgoose version being used. For instance, maybe updating to the latest...