summaryrefslogtreecommitdiff
path: root/spec/graphql/types/error_tracking/sentry_error_stack_trace_entry_type_spec.rb
blob: ce5fade6fcc92f900638bf68a3e6aa95addc7011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

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

  it 'exposes the expected fields' do
    expected_fields = %i[
      function
      col
      line
      file_name
      trace_context
    ]

    is_expected.to have_graphql_fields(*expected_fields)
  end
end