Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
55175d04
Commit
55175d04
authored
May 20, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
154d6f23
ec79a0a2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
3 deletions
+19
-3
app/assets/javascripts/reports/store/state.js
app/assets/javascripts/reports/store/state.js
+5
-0
app/serializers/test_case_entity.rb
app/serializers/test_case_entity.rb
+1
-0
changelogs/unreleased/display-junit-classname-in-modal.yml
changelogs/unreleased/display-junit-classname-in-modal.yml
+5
-0
qa/spec/spec_helper.rb
qa/spec/spec_helper.rb
+5
-3
spec/fixtures/api/schemas/entities/test_case.json
spec/fixtures/api/schemas/entities/test_case.json
+1
-0
spec/serializers/test_case_entity_spec.rb
spec/serializers/test_case_entity_spec.rb
+2
-0
No files found.
app/assets/javascripts/reports/store/state.js
View file @
55175d04
...
...
@@ -40,6 +40,11 @@ export default () => ({
text
:
s__
(
'
Reports|Class
'
),
type
:
fieldTypes
.
link
,
},
classname
:
{
value
:
null
,
text
:
s__
(
'
Reports|Classname
'
),
type
:
fieldTypes
.
text
,
},
execution_time
:
{
value
:
null
,
text
:
s__
(
'
Reports|Execution time
'
),
...
...
app/serializers/test_case_entity.rb
View file @
55175d04
...
...
@@ -3,6 +3,7 @@
class
TestCaseEntity
<
Grape
::
Entity
expose
:status
expose
:name
expose
:classname
expose
:execution_time
expose
:system_output
expose
:stack_trace
...
...
changelogs/unreleased/display-junit-classname-in-modal.yml
0 → 100644
View file @
55175d04
---
title
:
Display classname JUnit attribute in report modal
merge_request
:
28376
author
:
type
:
added
qa/spec/spec_helper.rb
View file @
55175d04
...
...
@@ -35,8 +35,10 @@ RSpec.configure do |config|
# show exception that triggers a retry if verbose_retry is set to true
config
.
display_try_failure_messages
=
true
config
.
around
do
|
example
|
retry_times
=
example
.
metadata
.
keys
.
include?
(
:quarantine
)
?
1
:
2
example
.
run_with_retry
retry:
retry_times
if
ENV
[
'CI'
]
config
.
around
do
|
example
|
retry_times
=
example
.
metadata
.
keys
.
include?
(
:quarantine
)
?
1
:
2
example
.
run_with_retry
retry:
retry_times
end
end
end
spec/fixtures/api/schemas/entities/test_case.json
View file @
55175d04
...
...
@@ -7,6 +7,7 @@
"properties"
:
{
"status"
:
{
"type"
:
"string"
},
"name"
:
{
"type"
:
"string"
},
"classname"
:
{
"type"
:
"string"
},
"execution_time"
:
{
"type"
:
"float"
},
"system_output"
:
{
"type"
:
[
"string"
,
"null"
]
},
"stack_trace"
:
{
"type"
:
[
"string"
,
"null"
]
}
...
...
spec/serializers/test_case_entity_spec.rb
View file @
55175d04
...
...
@@ -14,6 +14,7 @@ describe TestCaseEntity do
it
'contains correct test case details'
do
expect
(
subject
[
:status
]).
to
eq
(
'success'
)
expect
(
subject
[
:name
]).
to
eq
(
'Test#sum when a is 1 and b is 3 returns summary'
)
expect
(
subject
[
:classname
]).
to
eq
(
'spec.test_spec'
)
expect
(
subject
[
:execution_time
]).
to
eq
(
1.11
)
end
end
...
...
@@ -24,6 +25,7 @@ describe TestCaseEntity do
it
'contains correct test case details'
do
expect
(
subject
[
:status
]).
to
eq
(
'failed'
)
expect
(
subject
[
:name
]).
to
eq
(
'Test#sum when a is 2 and b is 2 returns summary'
)
expect
(
subject
[
:classname
]).
to
eq
(
'spec.test_spec'
)
expect
(
subject
[
:execution_time
]).
to
eq
(
2.22
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment