summaryrefslogtreecommitdiff
path: root/spec/graphql/types/alert_management/domain_filter_enum_spec.rb
blob: 2111a33b8b46f346f5116ffe57c6d1ac4f6aec09 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['AlertManagementDomainFilter'] do
  specify { expect(described_class.graphql_name).to eq('AlertManagementDomainFilter') }

  it 'exposes all the severity values' do
    expect(described_class.values.keys).to include(*%w[threat_monitoring operations])
  end
end