# frozen_string_literal: true require 'spec_helper' RSpec.describe Types::Ci::JobType do specify { expect(described_class.graphql_name).to eq('CiJob') } specify { expect(described_class).to require_graphql_authorizations(:read_commit_status) } it 'exposes the expected fields' do expected_fields = %i[ active allow_failure artifacts cancelable commitPath coverage created_at detailedStatus duration finished_at id name needs pipeline playable queued_at refName refPath retryable scheduledAt schedulingType shortSha stage started_at status tags ] expect(described_class).to have_graphql_fields(*expected_fields) end end