Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-02-20 15:44:20 +0300
committerFilipa Lacerda <filipa@gitlab.com>2018-02-20 16:07:43 +0300
commit3619c9174558bd2b2ae625ac6db480c437eb8484 (patch)
tree7040e779b522a9656b36abf4b8372378f5f5f63b /spec/javascripts/clusters/components
parent7efb28515f4d25120638a7025ebb26afc6114975 (diff)
Adds missing links, uses value instead of placeholder in input field and properly sets the ip key
Diffstat (limited to 'spec/javascripts/clusters/components')
-rw-r--r--spec/javascripts/clusters/components/applications_spec.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/javascripts/clusters/components/applications_spec.js b/spec/javascripts/clusters/components/applications_spec.js
index d055679aea8..9bd47aea7f9 100644
--- a/spec/javascripts/clusters/components/applications_spec.js
+++ b/spec/javascripts/clusters/components/applications_spec.js
@@ -54,14 +54,13 @@ describe('Applications', () => {
ingress: {
title: 'Ingress',
status: 'installed',
- external_ip: '0.0.0.0',
+ externalIp: '0.0.0.0',
},
helm: { title: 'Helm Tiller' },
runner: { title: 'GitLab Runner' },
prometheus: { title: 'Prometheus' },
},
});
-
expect(
vm.$el.querySelector('#ipAddress').getAttribute('placeholder'),
).toEqual('0.0.0.0');
@@ -92,7 +91,7 @@ describe('Applications', () => {
expect(
vm.$el.querySelector('.js-no-ip-message').textContent.replace(/\n(\s)+/g, ' ').trim(),
).toEqual(
- 'The IP address is in process to be assigned, please check your Kubernetes cluster or Quotas on GKE if it takes a long time. More information',
+ 'The IP address is still in the process of being assigned, please check your Kubernetes cluster or Quotas on GKE if it takes a long time. More information',
);
});
});