mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[misc] do not access potentially undefined opts
This commit is contained in:
@@ -33,7 +33,7 @@ function createClient(opts) {
|
||||
}
|
||||
|
||||
let client
|
||||
if (opts.cluster) {
|
||||
if (standardOpts.cluster) {
|
||||
delete standardOpts.cluster
|
||||
client = new Redis.Cluster(opts.cluster, standardOpts)
|
||||
} else {
|
||||
|
||||
@@ -78,6 +78,10 @@ describe('index', function () {
|
||||
})
|
||||
})
|
||||
|
||||
it('should work without opts', function () {
|
||||
this.redis.createClient()
|
||||
})
|
||||
|
||||
it('should use the ioredis driver in single-instance mode if a non array is passed', function () {
|
||||
const client = this.redis.createClient(this.standardOpts)
|
||||
return assert.equal(client.constructor, this.ioredis)
|
||||
|
||||
Reference in New Issue
Block a user