Commit 006aaf43 authored by Andrew Fontaine's avatar Andrew Fontaine

Merge branch 'improve-within-strategy-row-spec-helper' into 'master'

Improve within_strategy_row Spec Helper

See merge request gitlab-org/gitlab!33339
parents dc0bd190 b36a3d2e
...@@ -305,7 +305,7 @@ export default { ...@@ -305,7 +305,7 @@ export default {
</div> </div>
</div> </div>
</div> </div>
<template v-if="filteredStrategies.length > 0"> <div v-if="filteredStrategies.length > 0" data-testid="feature-flag-strategies">
<strategy <strategy
v-for="(strategy, index) in filteredStrategies" v-for="(strategy, index) in filteredStrategies"
:key="strategy.id" :key="strategy.id"
...@@ -316,7 +316,7 @@ export default { ...@@ -316,7 +316,7 @@ export default {
@change="onFormStrategyChange($event, index)" @change="onFormStrategyChange($event, index)"
@delete="deleteStrategy(strategy)" @delete="deleteStrategy(strategy)"
/> />
</template> </div>
<div v-else class="flex justify-content-center border-top py-4 w-100"> <div v-else class="flex justify-content-center border-top py-4 w-100">
<span>{{ $options.translations.noStrategiesText }}</span> <span>{{ $options.translations.noStrategiesText }}</span>
</div> </div>
......
...@@ -33,7 +33,7 @@ module FeatureFlagHelpers ...@@ -33,7 +33,7 @@ module FeatureFlagHelpers
end end
def within_strategy_row(index) def within_strategy_row(index)
within ".feature-flags-form > fieldset > div:nth-child(#{index + 3})" do within ".feature-flags-form > fieldset > div[data-testid='feature-flag-strategies'] > div:nth-child(#{index})" do
yield yield
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