Let's also add a check to ProxyHosts tests to see if it passes

This commit is contained in:
Julia V Rose 2026-04-29 00:47:55 -07:00
parent 1a5f39a221
commit efca9a8d80

View file

@ -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');
});