summaryrefslogtreecommitdiff
path: root/spec/graphql/types/notes/discussion_type_spec.rb
blob: 2a1eb0efd3543dbd3396b868149f8e0916db0ff2 (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) }

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