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:
authorAlishan Ladhani <aladhani@gitlab.com>2019-08-23 00:40:59 +0300
committerAlishan Ladhani <aladhani@gitlab.com>2019-09-06 06:33:04 +0300
commit88904b2a5fc604d19def3045b293caeabf60a728 (patch)
tree7dadbff962cbafc09e95aa26c2468bb29a4f8cfb /spec/frontend
parent34822489d3633746592615cbd3e4bcc5b70a5d13 (diff)
Enable Knative installation on group and instance level clusters
- Show Knative install button on group/instance cluster pages - Allow Knative to be installed on group/instance clusters - Add feature specs for installing applications on group/instance clusters - Add changelog entry - Update docs to reflect that Knative can now be installed on group-level and instance-level clusters
Diffstat (limited to 'spec/frontend')
-rw-r--r--spec/frontend/clusters/components/applications_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/clusters/components/applications_spec.js b/spec/frontend/clusters/components/applications_spec.js
index 1d8984cea0a..fbcab078993 100644
--- a/spec/frontend/clusters/components/applications_spec.js
+++ b/spec/frontend/clusters/components/applications_spec.js
@@ -89,7 +89,7 @@ describe('Applications', () => {
});
it('renders a row for Knative', () => {
- expect(vm.$el.querySelector('.js-cluster-application-row-knative')).toBeNull();
+ expect(vm.$el.querySelector('.js-cluster-application-row-knative')).not.toBeNull();
});
});
@@ -126,7 +126,7 @@ describe('Applications', () => {
});
it('renders a row for Knative', () => {
- expect(vm.$el.querySelector('.js-cluster-application-row-knative')).toBeNull();
+ expect(vm.$el.querySelector('.js-cluster-application-row-knative')).not.toBeNull();
});
});