In my test suite I need to up a redis connection and when all tests is done I need to close the connection and free the event loop of redis connection strem.
The methods are list dosn't free the event loop.
I solve with: process.exit(0)
Some other way to do that?
I think you want client.quit()
.