summaryrefslogtreecommitdiff
path: root/spec/graphql/types/metrics/dashboards/annotation_type_spec.rb
blob: dbb8b04dbd7d653a0376ebdbe4217838121292e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

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

  it 'has the expected fields' do
    expected_fields = %w[
      description id panel_id starting_at ending_at
    ]

    expect(described_class).to have_graphql_fields(*expected_fields)
  end

  specify { expect(described_class).to require_graphql_authorizations(:read_metrics_dashboard_annotation) }
end