Test storage adapters allow process to exit.
Otherwise the process may hang if the storage adapter keeps a connection open.
We should add something like this in the constructor:
process.on('exit', () => {
this.opts.store.closeConnection && this.opts.store.closeConnection();
});
Related: https://github.com/lukechilds/keyv-redis/issues/12