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:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-31 15:08:51 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-31 15:08:51 +0300
commit7ac9cddf764fe60a7f86ae9b0bfb5c30825d9a4e (patch)
tree75aabc7bde10a11819d48d6f2e64667c0e4bd183 /spec/frontend/clusters
parentfe98ad8383b9528553329a2a164173ba52c86168 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/clusters')
-rw-r--r--spec/frontend/clusters/components/knative_domain_editor_spec.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/frontend/clusters/components/knative_domain_editor_spec.js b/spec/frontend/clusters/components/knative_domain_editor_spec.js
index 242b5701f8b..a7b4d75fa9e 100644
--- a/spec/frontend/clusters/components/knative_domain_editor_spec.js
+++ b/spec/frontend/clusters/components/knative_domain_editor_spec.js
@@ -117,7 +117,9 @@ describe('KnativeDomainEditor', () => {
it('displays an error banner indicating the operation failure', () => {
wrapper.setProps({ knative: { updateFailed: true, ...knative } });
- expect(wrapper.find('.js-cluster-knative-domain-name-failure-message').exists()).toBe(true);
+ return wrapper.vm.$nextTick().then(() => {
+ expect(wrapper.find('.js-cluster-knative-domain-name-failure-message').exists()).toBe(true);
+ });
});
});