Merge branch 'mc/fix/ci-variable-qa' into 'master'
Remove spaces from variable name in CI variable QA test Closes gitlab-org/quality/nightly#91 See merge request gitlab-org/gitlab-ce!27042
This commit is contained in:
commit
7a48a06cf3
1 changed files with 4 additions and 5 deletions
|
@ -1,8 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module QA
|
||||
# Failure issue: https://gitlab.com/gitlab-org/quality/nightly/issues/91
|
||||
context 'Verify', :quarantine do
|
||||
context 'Verify' do
|
||||
describe 'CI variable support' do
|
||||
it 'user adds a CI variable' do
|
||||
Runtime::Browser.visit(:gitlab, Page::Main::Login)
|
||||
|
@ -10,17 +9,17 @@ module QA
|
|||
|
||||
Resource::CiVariable.fabricate! do |resource|
|
||||
resource.key = 'VARIABLE_KEY'
|
||||
resource.value = 'some CI variable'
|
||||
resource.value = 'some_CI_variable'
|
||||
end
|
||||
|
||||
Page::Project::Settings::CICD.perform do |settings|
|
||||
settings.expand_ci_variables do |page|
|
||||
expect(page).to have_field(with: 'VARIABLE_KEY')
|
||||
expect(page).not_to have_field(with: 'some CI variable')
|
||||
expect(page).not_to have_field(with: 'some_CI_variable')
|
||||
|
||||
page.reveal_variables
|
||||
|
||||
expect(page).to have_field(with: 'some CI variable')
|
||||
expect(page).to have_field(with: 'some_CI_variable')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue