gitlab-org--gitlab-foss/spec/features/project_variables_spec.rb
mfluharty 0481d69907
Add control for variable value masking
Show masked switch for each variable
When toggled on, the variable value will be masked in runner logs
Show warning message if the switch is on but the value is not maskable
2019-03-29 12:49:59 -06:00

18 lines
450 B
Ruby

require 'spec_helper'
describe 'Project variables', :js do
let(:user) { create(:user) }
let(:project) { create(:project) }
let(:variable) { create(:ci_variable, key: 'test_key', value: 'test_value', masked: true) }
let(:page_path) { project_settings_ci_cd_path(project) }
before do
sign_in(user)
project.add_maintainer(user)
project.variables << variable
visit page_path
end
it_behaves_like 'variable list'
end