-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SIGNREQUEST output in Jest #178
Comments
Since that library is not using |
I just refactored to use |
@lvl99 Running into the same issue here. Did you figure it out? |
@ArnoSoontjens can't remember how I solved this, sorry -- my GCB project is still broken, but for another reason! I may have tried to refactor so that I didn't import any internal module that uses the SFTP dependency in my tests. Otherwise, the last thing I remember updating was changing internal SFTP module to use bottleneck to prevent too many concurrent sessions being open. I also have a vague feeling |
Also seeing the same issue, Jest failing to exit due to open handle at ssh2 constants: testcontainers/testcontainers-node#346 |
I'm using
sftp-promises
which uses this library as a dependency, and I'm finding that Google Cloud Build (GCB) is breaking when it is trying to run tests via Jest:When I look at line 15, I can see that there's some attempt to validate a crypto algo, potentially to test to see if the local environment supports it. I'm unsure why it breaks on GCB (using
node:latest
), but it's been a hair-pulling experience trying to debug.Has anyone else come across this issue?
The text was updated successfully, but these errors were encountered: