diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-12-17 18:10:14 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-12-17 18:10:14 +0000 |
commit | f3b791d5d5b0b058d2b717da1a54a63f3bba5adc (patch) | |
tree | 0f88def948be12834a60ca156502c304e0a10aa3 /spec/frontend/issue_show | |
parent | ef73ee020e96f39a109a16c4c6b018d8ea7cabc1 (diff) | |
download | gitlab-ce-f3b791d5d5b0b058d2b717da1a54a63f3bba5adc.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/issue_show')
-rw-r--r-- | spec/frontend/issue_show/components/app_spec.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/frontend/issue_show/components/app_spec.js b/spec/frontend/issue_show/components/app_spec.js index dde4e8458d5..d50b67970d8 100644 --- a/spec/frontend/issue_show/components/app_spec.js +++ b/spec/frontend/issue_show/components/app_spec.js @@ -507,13 +507,6 @@ describe('Issuable output', () => { expect(wrapper.vm.issueChanged).toBe(false); }); - it('returns false when `initialTitleText` is null and `formState.title` is empty string', () => { - wrapper.vm.store.formState.title = ''; - wrapper.setProps({ initialTitleText: null }); - - expect(wrapper.vm.issueChanged).toBe(false); - }); - it('returns true when description is changed', () => { wrapper.vm.store.formState.description = 'RandomText'; |