const hostname = Cypress._.sample(this.hosts).name;
hosts.maintenance(hostname, true);
});
-
- it('should exit host from maintenance', function () {
- const hostname = Cypress._.sample(this.hosts).name;
- hosts.checkServiceInstancesExist(hostname, ['mgr: 1', 'prometheus: 1']);
- });
});
});
hosts.add(hostnames[1]);
hosts.checkExist(hostnames[1], true);
});
+
+ it('should show the exact count of daemons', () => {
+ hosts.checkServiceInstancesExist(hostnames[0], ['mgr: 1', 'prometheus: 1']);
+ });
});