Integration tests fail locally with "function uv_close"
See original GitHub issueThis has been happening for a while locally, which makes the publishing pipeline annoying sometimes:
Assertion failed: (0), function uv_close, file ../deps/uv/src/unix/core.c, line 176.
error Command failed with signal "SIGABRT".
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (13 by maintainers)
Top Results From Across the Web
How to Fix Flaky Tests - Semaphore CI
Randomly failing tests are the hardest to debug. Here's a framework you can use to fix them and keep your test suite healthy....
Read more >Troubleshooting Continuous Integration, or How to Debug ...
Troubleshooting Continuous Integration, or How to Debug Tests That Fail on CI, but Pass Locally · Don't Relaunch the CI Build · Rebase...
Read more >Integration tests fail when checking function that can throw error
when running my integration tests, I am getting an issue with the tests failing because it's throwing. This is old code though and...
Read more >Why tests pass locally but fail in Jenkins | Object Partners
The dreaded “works on my machine” test failure not only reduces trust in your automated builds and continuous integration, but could also be ......
Read more >6 best practices for integration testing with continuous ...
How integration testing works with CI and DevOps · Run integration tests until something fails · Determine what needs to be added or...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@marcosvega91 the workaround there worked, cheers!
Adding
to
package.json
causes warnings on the yarn install, but makes the tests work consistently.It’s originating from
watchpack
that is a dependency ofwebpack
so I think that we can proceed without a problem