0481d69907
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
17 lines
422 B
Ruby
17 lines
422 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'Group variables', :js do
|
|
let(:user) { create(:user) }
|
|
let(:group) { create(:group) }
|
|
let!(:variable) { create(:ci_group_variable, key: 'test_key', value: 'test_value', masked: true, group: group) }
|
|
let(:page_path) { group_settings_ci_cd_path(group) }
|
|
|
|
before do
|
|
group.add_owner(user)
|
|
gitlab_sign_in(user)
|
|
|
|
visit page_path
|
|
end
|
|
|
|
it_behaves_like 'variable list'
|
|
end
|