Doug McCall
Doug McCall
So, looking over the code, I think the issue is related to how frames are detected and split apart, which appears to be incorrect. A buffer is need, however it...
This should be fixed now that Jest v23 is supported (I had been running into the same issues previously).
I could have avoided having to spin up a dummy python web server to serve the assets if this had been available - looking forward to having this feature merged...
> I'm probably missing a point here, but what avantage does this approach have over serving those static files from another **nginx** container behind **nginx-proxy** ? The advantage is precisely...
Thanks for the insights @JonathonReinhart and @buchdag, very much appreciated. My gut was telling me that it wasn't possible, but I was hoping for something within the SDK that I...
Hi @sylvainlegault - specifying a separate Jest config should be no issue whatsoever. In your `jest.config.e2e.js`, did you remember to specify the following `testEnvironment`? ``` "testEnvironment": "jest-environment-serverless" ``` One other...
@sylvainlegault - Thanks for the update. I'm trying to put together a small environment to try to replicate. In case you'd like to see if it helps out at all,...
@sylvainlegault - I was able to track down the source of the issue: Serverless itself is naively parsing the command-line arguments along with Jest, so I just need to check...
@sylvainlegault I've updated my [jest-25.x](https://github.com/dhm116/jest-environment-serverless/tree/jest-25.x) branch with a simple fix that should resolve your issue. When you get a chance, give it a shot and let me know if it...