Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ui_component_size_enum_spec.rb « sast « ci_configuration « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23184df809f9adae2c252e8513e8b0af7447075d (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Types::CiConfiguration::Sast::UiComponentSizeEnum do
  specify { expect(described_class.graphql_name).to eq('SastUiComponentSize') }

  it 'exposes all sizes of ui components' do
    expect(described_class.values.keys).to include(*%w[SMALL MEDIUM LARGE])
  end
end