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>2020-01-01 09:09:01 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-01 09:09:01 +0300
commitb085478c4c2bed74fdc6eb2c33bfc62e791baf03 (patch)
tree71473cafdfc2f941933d326e6beb319bdbcdc79a /spec/frontend/issuable_suggestions
parent62ddd3a00522d62ab23c7804e24dbe1c941bc0a7 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/issuable_suggestions')
-rw-r--r--spec/frontend/issuable_suggestions/components/app_spec.js16
1 files changed, 12 insertions, 4 deletions
diff --git a/spec/frontend/issuable_suggestions/components/app_spec.js b/spec/frontend/issuable_suggestions/components/app_spec.js
index 8ec7c4a5890..18fc4d146eb 100644
--- a/spec/frontend/issuable_suggestions/components/app_spec.js
+++ b/spec/frontend/issuable_suggestions/components/app_spec.js
@@ -42,14 +42,18 @@ describe('Issuable suggestions app component', () => {
it('renders component', () => {
wrapper.setData(data);
- expect(wrapper.isEmpty()).toBe(false);
+ return wrapper.vm.$nextTick(() => {
+ expect(wrapper.isEmpty()).toBe(false);
+ });
});
it('does not render with empty search', () => {
wrapper.setProps({ search: '' });
wrapper.setData(data);
- expect(wrapper.isVisible()).toBe(false);
+ return wrapper.vm.$nextTick(() => {
+ expect(wrapper.isVisible()).toBe(false);
+ });
});
it('does not render when loading', () => {
@@ -58,13 +62,17 @@ describe('Issuable suggestions app component', () => {
loading: 1,
});
- expect(wrapper.isVisible()).toBe(false);
+ return wrapper.vm.$nextTick(() => {
+ expect(wrapper.isVisible()).toBe(false);
+ });
});
it('does not render with empty issues data', () => {
wrapper.setData({ issues: [] });
- expect(wrapper.isVisible()).toBe(false);
+ return wrapper.vm.$nextTick(() => {
+ expect(wrapper.isVisible()).toBe(false);
+ });
});
it('renders list of issues', () => {