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 'app/graphql/types/ci/test_case_type.rb')
-rw-r--r--app/graphql/types/ci/test_case_type.rb26
1 files changed, 15 insertions, 11 deletions
diff --git a/app/graphql/types/ci/test_case_type.rb b/app/graphql/types/ci/test_case_type.rb
index 6e5f55aa3ed..f88923215eb 100644
--- a/app/graphql/types/ci/test_case_type.rb
+++ b/app/graphql/types/ci/test_case_type.rb
@@ -9,32 +9,36 @@ module Types
connection_type_class(Types::CountableConnectionType)
- field :status, Types::Ci::TestCaseStatusEnum, null: true,
- description: "Status of the test case (#{::Gitlab::Ci::Reports::TestCase::STATUS_TYPES.join(', ')})."
+ field :status,
+ Types::Ci::TestCaseStatusEnum,
+ null: true,
+ description: "Status of the test case (#{::Gitlab::Ci::Reports::TestCase::STATUS_TYPES.join(', ')})."
field :name, GraphQL::Types::String, null: true,
- description: 'Name of the test case.'
+ description: 'Name of the test case.'
field :classname, GraphQL::Types::String, null: true,
- description: 'Classname of the test case.'
+ description: 'Classname of the test case.'
field :execution_time, GraphQL::Types::Float, null: true,
- description: 'Test case execution time in seconds.'
+ description: 'Test case execution time in seconds.'
field :file, GraphQL::Types::String, null: true,
- description: 'Path to the file of the test case.'
+ description: 'Path to the file of the test case.'
field :attachment_url, GraphQL::Types::String, null: true,
- description: 'URL of the test case attachment file.'
+ description: 'URL of the test case attachment file.'
field :system_output, GraphQL::Types::String, null: true,
- description: 'System output of the test case.'
+ description: 'System output of the test case.'
field :stack_trace, GraphQL::Types::String, null: true,
- description: 'Stack trace of the test case.'
+ description: 'Stack trace of the test case.'
- field :recent_failures, Types::Ci::RecentFailuresType, null: true,
- description: 'Recent failure history of the test case on the base branch.'
+ field :recent_failures,
+ Types::Ci::RecentFailuresType,
+ null: true,
+ description: 'Recent failure history of the test case on the base branch.'
end
# rubocop: enable Graphql/AuthorizeTypes
end