diff options
author | Annabel Gray <annabel.m.gray@gmail.com> | 2018-07-02 17:31:08 +0000 |
---|---|---|
committer | Annabel Gray <annabel.m.gray@gmail.com> | 2018-07-02 17:31:08 +0000 |
commit | 80e671aea30754d663c2a1ae480ab771b681ca04 (patch) | |
tree | 1e3d4c26fae9d645e37939b50f8b4652191d6513 /spec | |
parent | 9ce5b098801c9a06ca4352bc0cfb8fc921b45c61 (diff) | |
parent | 5870d5e4d481ed1a129d8b35c96b912b809da9d1 (diff) | |
download | gitlab-ce-80e671aea30754d663c2a1ae480ab771b681ca04.tar.gz |
Merge branch 'add-title-placeholder-for-new-issues' into 'master'
Add title placeholder for new issues
Closes #48085
See merge request gitlab-org/gitlab-ce!20271
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/projects/issues/user_creates_issue_spec.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/features/projects/issues/user_creates_issue_spec.rb b/spec/features/projects/issues/user_creates_issue_spec.rb index e76f7c5589d..5e8662100c5 100644 --- a/spec/features/projects/issues/user_creates_issue_spec.rb +++ b/spec/features/projects/issues/user_creates_issue_spec.rb @@ -17,6 +17,9 @@ describe "User creates issue" do expect(page).to have_no_content("Assign to") .and have_no_content("Labels") .and have_no_content("Milestone") + + expect(page.find('#issue_title')['placeholder']).to eq 'Title' + expect(page.find('#issue_description')['placeholder']).to eq 'Write a comment or drag your files hereā¦' end issue_title = "500 error on profile" |