-
-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3c6c64
commit 9107338
Showing
4 changed files
with
38 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 24 additions & 7 deletions
31
allure-generator/src/main/javascript/components/tree/tree-leaf.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
<a class="node node__leaf" href="#{{baseUrl}}/{{uid}}"> | ||
<div class="node__title long-line" data-uid="{{uid}}"> | ||
<span class="node__anchor"> | ||
<div class="node__title" data-uid="{{uid}}"> | ||
<div class="node__anchor"> | ||
{{allure-icon status 'fa-lg'}} | ||
</span> | ||
</div> | ||
{{#if flaky}} | ||
{{allure-icon 'flaky'}} | ||
{{/if}} | ||
{{name}} | ||
<span class="node__stats"> | ||
{{duration time.duration}} | ||
</span> | ||
<div class="node__name"> | ||
{{name}} | ||
</div> | ||
{{#if parameters}} | ||
|
||
<div class="node__parameters long-line line-ellipsis"> | ||
<span> </span> | ||
{{#each parameters}} | ||
{{#if value}} | ||
{{value}} | ||
{{~else}} | ||
null | ||
{{~/if~}} | ||
<span class="node__parameters_separator">,</span> | ||
{{/each}} | ||
</div> | ||
{{/if}} | ||
<div class="tree__strut"> </div> | ||
<div class="node__stats"> | ||
{{~duration time.duration~}} | ||
</div> | ||
</div> | ||
</a> |