summaryrefslogtreecommitdiff
path: root/spec/graphql/types/metrics/dashboard_type_spec.rb
blob: 81219c596a72243b52d0fd91cf855c301a56a293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'

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

  it 'has the expected fields' do
    expected_fields = %w[
        path annotations
      ]

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

  describe 'annotations field' do
    subject { described_class.fields['annotations'] }

    it { is_expected.to have_graphql_type(Types::Metrics::Dashboards::AnnotationType.connection_type) }
    it { is_expected.to have_graphql_resolver(Resolvers::Metrics::Dashboards::AnnotationResolver) }
  end
end