Commit 20c22cf0 authored by Tiffany Rea's avatar Tiffany Rea

Merge branch 'add-feature-flag-tag-to-ui-variable-tests' into 'master'

Add feature_flag Tag to Verify UI Defined Variable Tests

See merge request gitlab-org/gitlab!85386
parents 3ea68bc0 517a728b
# frozen_string_literal: true
module QA
# Running with FF :ci_trigger_forward_variables
RSpec.describe 'Verify', :runner do
# TODO:
# Remove FF :ci_trigger_forward_variables
# when https://gitlab.com/gitlab-org/gitlab/-/issues/355572 is closed
RSpec.describe 'Verify', :runner, feature_flag: {
name: 'ci_trigger_forward_variables',
scope: :global
} do
describe 'UI defined variable' do
include_context 'variable inheritance test prep'
......
# frozen_string_literal: true
module QA
# Running with FF :ci_trigger_forward_variables
RSpec.describe 'Verify', :runner do
# TODO:
# Remove FF :ci_trigger_forward_variables
# when https://gitlab.com/gitlab-org/gitlab/-/issues/355572 is closed
RSpec.describe 'Verify', :runner, feature_flag: {
name: 'ci_trigger_forward_variables',
scope: :global
} do
describe 'UI defined variable' do
include_context 'variable inheritance test prep'
......
# frozen_string_literal: true
module QA
# TODO:
# Remove FF :ci_trigger_forward_variables
# when https://gitlab.com/gitlab-org/gitlab/-/issues/355572 is closed
RSpec.shared_context 'variable inheritance test prep', feature_flag: {
name: 'ci_trigger_forward_variables',
scope: :global
} do
RSpec.shared_context 'variable inheritance test prep' do
let(:random_string) { Faker::Alphanumeric.alphanumeric(number: 8) }
let(:group) do
......
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