From efca9a8d80337139668422d2cf284f57fefb4f2c Mon Sep 17 00:00:00 2001 From: Julia V Rose Date: Wed, 29 Apr 2026 00:47:55 -0700 Subject: [PATCH] Let's also add a check to ProxyHosts tests to see if it passes --- test/cypress/e2e/api/ProxyHosts.cy.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/cypress/e2e/api/ProxyHosts.cy.js b/test/cypress/e2e/api/ProxyHosts.cy.js index f86fd42e..03778b5f 100644 --- a/test/cypress/e2e/api/ProxyHosts.cy.js +++ b/test/cypress/e2e/api/ProxyHosts.cy.js @@ -41,6 +41,7 @@ describe('Proxy Hosts endpoints', () => { expect(data.id).to.be.greaterThan(0); expect(data).to.have.property('enabled'); expect(data).to.have.property('enabled', true); + expect(data).to.have.property('enable_proxy_protocol', false); expect(data).to.have.property('meta'); expect(typeof data.meta.nginx_online).to.be.equal('undefined'); });