We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42de337 commit dc5eb01Copy full SHA for dc5eb01
tests/integration/tests/kyma-namespace/test-hpa.spec.js
@@ -5,7 +5,7 @@ import { chooseComboboxOption } from '../../support/helpers';
5
const HPA_NAME = 'test-hpa';
6
const DOCKER_IMAGE = 'nginx';
7
const DEPLOYEMENT_NAME = 'no-pod';
8
-const MIN_REPLICAS = 2;
+const MIN_REPLICAS = 1;
9
const MAX_REPLICAS = 3;
10
const SCALE_TARGET_REF_KIND = 'Deployment';
11
const SCALE_TARGET_REF_NAME = 'no-pod';
@@ -106,7 +106,7 @@ context('Test HPA', () => {
106
.find('input')
107
.click()
108
.clear()
109
- .type(MIN_REPLICAS, { force: true });
+ .type(MIN_REPLICAS);
110
111
cy.saveChanges('Edit');
112
cy.inspectTab('View');
0 commit comments