summaryrefslogtreecommitdiff
path: root/spec/graphql/types/notes/discussion_type_spec.rb
blob: ba7fc961212e8f97059095b36acb49891ce26260 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
require 'spec_helper'

describe GitlabSchema.types['Discussion'] do
  it { is_expected.to have_graphql_fields(:id, :created_at, :notes, :reply_id) }

  it { is_expected.to require_graphql_authorizations(:read_note) }
end