Commit 080fac7d authored by David O'Regan's avatar David O'Regan

Merge branch 'use-graphql-boards-for-project-issue-boards-ee-sidebar-spec' into 'master'

Use graphql boards for project issue boards sidebar specs (EE)

See merge request gitlab-org/gitlab!59938
parents d47100b5 319b151e
...@@ -77,7 +77,12 @@ export default { ...@@ -77,7 +77,12 @@ export default {
</script> </script>
<template> <template>
<board-editable-item ref="sidebarItem" :title="__('Labels')" :loading="loading"> <board-editable-item
ref="sidebarItem"
:title="__('Labels')"
:loading="loading"
data-testid="sidebar-labels"
>
<template #collapsed> <template #collapsed>
<gl-label <gl-label
v-for="label in issueLabels" v-for="label in issueLabels"
......
...@@ -70,6 +70,7 @@ export default { ...@@ -70,6 +70,7 @@ export default {
ref="sidebarItem" ref="sidebarItem"
:title="__('Weight')" :title="__('Weight')"
:loading="loading" :loading="loading"
data-testid="sidebar-weight"
@close="setWeight()" @close="setWeight()"
> >
<template v-if="hasWeight" #collapsed> <template v-if="hasWeight" #collapsed>
......
This diff is collapsed.
This diff is collapsed.
...@@ -4,6 +4,7 @@ module BoardHelpers ...@@ -4,6 +4,7 @@ module BoardHelpers
def click_card(card) def click_card(card)
within card do within card do
first('.board-card-number').click first('.board-card-number').click
wait_for_requests
end end
end end
end end
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