Commit 45767fa4 authored by Dan Davison's avatar Dan Davison

Merge branch 'qa/refactor-group-boards-test-suite' into 'master'

Use random board names on test, for robustness

Closes #16176

See merge request gitlab-org/gitlab-ee!16410
parents 93d168eb 2aada821
# frozen_string_literal: true
require 'securerandom'
module QA
context 'Plan' do
describe 'Group issue boards' do
let(:board_1) { 'Upstream 1' }
let(:board_2) { 'Upstream 2' }
let(:board_3) { 'Upstream 3' }
let(:board_1) { "Board-#{SecureRandom.hex(4)}" }
let(:board_2) { "Board-#{SecureRandom.hex(4)}" }
let(:board_3) { "Board-#{SecureRandom.hex(4)}" }
let(:group) do
QA::Resource::Group.fabricate_via_api!
......
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