Commit 109f6122 authored by Ramya Authappan's avatar Ramya Authappan

Merge branch 'fix_qa_auto_devops_ci_masking_variable' into 'master'

QA: Change CI value to something that can be masked

See merge request gitlab-org/gitlab-ce!27146
parents 4c301692 5e772106
......@@ -40,7 +40,7 @@ module QA
Resource::CiVariable.fabricate! do |resource|
resource.project = @project
resource.key = 'K8S_SECRET_OPTIONAL_MESSAGE'
resource.value = 'You can see this application secret'
resource.value = 'you_can_see_this_variable'
end
# Connect K8s cluster
......@@ -99,7 +99,7 @@ module QA
Page::Project::Operations::Environments::Show.perform do |show|
show.view_deployment do
expect(page).to have_content('Hello World!')
expect(page).to have_content('You can see this application secret')
expect(page).to have_content('you_can_see_this_variable')
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