Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/graphql/types/ci/job_type_spec.rb')
-rw-r--r--spec/graphql/types/ci/job_type_spec.rb28
1 files changed, 23 insertions, 5 deletions
diff --git a/spec/graphql/types/ci/job_type_spec.rb b/spec/graphql/types/ci/job_type_spec.rb
index 25f626cea0f..787e2174070 100644
--- a/spec/graphql/types/ci/job_type_spec.rb
+++ b/spec/graphql/types/ci/job_type_spec.rb
@@ -8,14 +8,32 @@ RSpec.describe Types::Ci::JobType do
it 'exposes the expected fields' do
expected_fields = %i[
- pipeline
+ active
+ allow_failure
+ artifacts
+ cancelable
+ commitPath
+ coverage
+ created_at
+ detailedStatus
+ duration
+ finished_at
+ id
name
needs
- detailedStatus
+ pipeline
+ playable
+ queued_at
+ refName
+ refPath
+ retryable
scheduledAt
- artifacts
- finished_at
- duration
+ schedulingType
+ shortSha
+ stage
+ started_at
+ status
+ tags
]
expect(described_class).to have_graphql_fields(*expected_fields)