Quarantine flaky specs

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Rémy Coutable 2019-04-10 16:20:29 +02:00
parent fc1dfae41c
commit 177bc25e3f
No known key found for this signature in database
GPG key ID: 98DFFD1C0C62B70B
4 changed files with 4 additions and 4 deletions

View file

@ -130,7 +130,7 @@ describe 'Issue Sidebar' do
end
end
context 'creating a project label', :js do
context 'creating a project label', :js, :quarantine do
before do
page.within('.block.labels') do
click_link 'Create project'

View file

@ -29,7 +29,7 @@ describe 'User creates branch and merge request on issue page', :js do
end
# In order to improve tests performance, all UI checks are placed in this test.
it 'shows elements' do
it 'shows elements', :quarantine do
button_create_merge_request = find('.js-create-merge-request')
button_toggle_dropdown = find('.create-mr-dropdown-wrap .dropdown-toggle')

View file

@ -75,7 +75,7 @@ describe 'User interacts with awards' do
end
end
it 'shows the list of award emoji categories' do
it 'shows the list of award emoji categories', :quarantine do
page.within('.awards') do
page.find('.js-add-award').click
end

View file

@ -529,7 +529,7 @@ describe QuickActions::InterpretService do
let(:issuable) { issue }
end
it_behaves_like 'assign command' do
it_behaves_like 'assign command', :quarantine do
let(:content) { "/assign @#{developer.username} @#{developer2.username}" }
let(:issuable) { merge_request }
end