Commit 25938e14 authored by Sofia Vistas's avatar Sofia Vistas Committed by Sanad Liaquat

Quarantine multiple test failures

parent 7bde92bb
......@@ -3,7 +3,11 @@
module QA
include QA::Support::Helpers::Plan
RSpec.describe 'Fulfillment', :requires_admin, only: { subdomain: :staging } do
RSpec.describe 'Fulfillment', :requires_admin, only: { subdomain: :staging }, quarantine: {
only: { subdomain: %i[staging] },
issue: "https://gitlab.com/gitlab-org/gitlab/-/issues/350856",
type: :broken
} do
context 'Purchase CI minutes' do
# the quantity of products to purchase
let(:purchase_quantity) { 5 }
......
......@@ -17,7 +17,11 @@ module QA
end
end
RSpec.describe 'Fulfillment', :requires_admin, only: { subdomain: :staging } do
RSpec.describe 'Fulfillment', :requires_admin, only: { subdomain: :staging }, quarantine: {
only: { subdomain: %i[staging] },
issue: "https://gitlab.com/gitlab-org/gitlab/-/issues/350856",
type: :broken
} do
let(:hash) { SecureRandom.hex(4) }
let(:user) do
Resource::User.fabricate_via_api! do |user|
......
......@@ -3,7 +3,11 @@
module QA
include QA::Support::Helpers::Plan
RSpec.describe 'Fulfillment', :requires_admin, only: { subdomain: :staging } do
RSpec.describe 'Fulfillment', :requires_admin, only: { subdomain: :staging }, quarantine: {
only: { subdomain: %i[staging] },
issue: "https://gitlab.com/gitlab-org/gitlab/-/issues/350856",
type: :broken
} do
describe 'Purchase' do
describe 'group plan' do
let(:hash) { SecureRandom.hex(4) }
......
......@@ -2,7 +2,11 @@
module QA
RSpec.describe 'Manage' do
describe 'prevent forking outside group' do
describe 'prevent forking outside group', quarantine: {
only: { subdomain: %i[staging] },
issue: "https://gitlab.com/gitlab-org/gitlab/-/issues/350854",
type: :broken
} do
let!(:group_for_fork) do
Resource::Sandbox.fabricate! do |sandbox_group|
sandbox_group.path = "group_for_fork_#{SecureRandom.hex(8)}"
......
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