From 85054bc9046e9dddd2bea7b95c326e7e6664fa2d Mon Sep 17 00:00:00 2001 From: Dominic Pelini <111786059+DomPeliniAerospike@users.noreply.github.com> Date: Mon, 6 Nov 2023 09:54:36 -0700 Subject: [PATCH] Added maxErrorRate and errorRateWindow to config tests --- test/config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/config.js b/test/config.js index 05dd355fe..14003fd95 100644 --- a/test/config.js +++ b/test/config.js @@ -74,6 +74,8 @@ describe('Config #noserver', function () { expect(config).to.have.property('authMode') expect(config).to.have.property('clusterName') expect(config).to.have.property('connTimeoutMs') + expect(config).to.have.property('maxErrorRate') + expect(config).to.have.property('errorRateWindow') expect(config).to.have.property('hosts') expect(config).to.have.property('log') expect(config).to.have.property('loginTimeoutMs')