Commit 7b345c06 authored by Walmyr Lima e Silva Filho's avatar Walmyr Lima e Silva Filho

Merge branch 'rename-test-method-and-element' into 'master'

Rename test method and element to more descriptive ones

See merge request gitlab-org/gitlab!17989
parents 0d54bbca ba4f4114
......@@ -159,7 +159,8 @@ export default {
v-gl-tooltip
:disabled="removeDisabled"
type="button"
class="btn btn-default btn-svg btn-item-remove js-issue-item-remove-button qa-remove-issue-button mr-xl-0 align-self-xl-center"
class="btn btn-default btn-svg btn-item-remove js-issue-item-remove-button mr-xl-0 align-self-xl-center"
data-qa-selector="remove_related_issue_button"
:title="__('Remove')"
:aria-label="__('Remove')"
@click="onRemoveRequest"
......
......@@ -13,7 +13,7 @@ module QA
end
view 'app/assets/javascripts/vue_shared/components/issue/related_issuable_item.vue' do
element :remove_issue_button
element :remove_related_issue_button
end
view 'ee/app/assets/javascripts/epic/components/epic_header.vue' do
......@@ -49,7 +49,7 @@ module QA
end
def remove_issue_from_epic
click_element :remove_issue_button
click_element :remove_related_issue_button
end
def click_edit_button
......
......@@ -36,7 +36,7 @@ module QA
end
view 'app/assets/javascripts/vue_shared/components/issue/related_issuable_item.vue' do
element :remove_issue_button
element :remove_related_issue_button
end
view 'app/helpers/dropdowns_helper.rb' do
......@@ -80,8 +80,8 @@ module QA
click_element(:milestone_link)
end
def click_remove_issue_button
click_element(:remove_issue_button)
def click_remove_related_issue_button
click_element(:remove_related_issue_button)
end
# Adds a comment to an issue
......
......@@ -37,7 +37,7 @@ module QA
expect(show).to have_content("marked this issue as related to ##{issue_2.iid}")
expect(show.related_issuable_item).to have_content(issue_2.title)
show.click_remove_issue_button
show.click_remove_related_issue_button
expect(show).to have_content("removed the relation with ##{issue_2.iid}")
expect(show).not_to have_content(issue_2.title)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment