This repository has been archived by the owner on Sep 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Naylin Medina <[email protected]>
- Loading branch information
Showing
4 changed files
with
175 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: container | ||
--- | ||
|
||
<div class="test-report"> | ||
{{ content }} | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
--- | ||
|
||
.test-report { | ||
|
||
.total { | ||
h2 { | ||
margin-bottom: 30px; | ||
} | ||
} | ||
|
||
p { | ||
padding: 10px; | ||
} | ||
|
||
.test-suite { | ||
cursor: pointer; | ||
// padding: 10px; | ||
&.passing { | ||
h4 { | ||
background-color: #A3D3A3; | ||
padding: 4px 4px; | ||
} | ||
margin: 11.5px 0px; | ||
border: groove; | ||
border-color: #6fba6f; | ||
} | ||
&.failing { | ||
h4 { | ||
background-color: #fc8f8f; | ||
padding: 4px 4px; | ||
} | ||
margin: 11.5px 0px; | ||
border: groove; | ||
border-color: #FA4444; | ||
|
||
} | ||
} | ||
|
||
.passing { | ||
div { | ||
background-color: #A3D3A3; | ||
} | ||
&.row { | ||
margin-left: 0px; | ||
margin-right: 0px; | ||
} | ||
} | ||
|
||
.failing { | ||
div { | ||
background-color: #fc8f8f; | ||
} | ||
|
||
&.row { | ||
margin-left: 0px; | ||
margin-right: 0px; | ||
} | ||
} | ||
|
||
} | ||
|
||
|
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,3 +1,103 @@ | ||
--- | ||
layout: page | ||
--- | ||
layout: testReport | ||
--- | ||
|
||
<script> | ||
let changeDisplay = function (id) { | ||
$(id).slideToggle() | ||
} | ||
</script> | ||
|
||
|
||
<div class="total row"> | ||
<div class="col-sm-12"> | ||
<h2>Test Results</h2> | ||
</div> | ||
<div class="col-sm-12"> | ||
<h2> 8 tests</h2> | ||
</div> | ||
</div> | ||
|
||
<div class="category"> | ||
<div class="test-suite row failing" onclick="changeDisplay('#test-1')"> | ||
<h4 class="col-sm-12">FlyveMDMInventoryAgentUITests</h4> | ||
<h4 class="col-sm-12">1 test</h4> | ||
</div> | ||
<!-- Failing or passing class --> | ||
<div class="failing row"> | ||
<div class="content" id="test-1"> | ||
<div class="title col-sm-12 dropdown-item"> | ||
<p>testTakeScreenshots</p> | ||
</div> | ||
<div class="time col-sm-12 dropdown-item"> | ||
<p>29.457s</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="category"> | ||
<div class="test-suite row passing" onclick="changeDisplay('#test-2')"> | ||
<h4 class="col-sm-12">FlyveMDMInventoryAgentTests</h4> | ||
<h4 class="col-sm-12">7 tests</h4> | ||
</div> | ||
<div id="test-2"> | ||
<div class="passing row"> | ||
<div class="title col-sm-12"> | ||
<p>testAgentSettingsController</p> | ||
</div> | ||
<div class="time col-sm-12"> | ||
<p>0.020s</p> | ||
</div> | ||
</div> | ||
<div class="passing row"> | ||
<div class="title col-sm-12"> | ||
<p>testCreateInventory</p> | ||
</div> | ||
<div class="time col-sm-12"> | ||
<p>0.045s</p> | ||
</div> | ||
</div> | ||
<div class="passing row"> | ||
<div class="title col-sm-12"> | ||
<p>testFooterView</p> | ||
</div> | ||
<div class="time col-sm-12"> | ||
<p>0.017s</p> | ||
</div> | ||
</div> | ||
<div class="passing row"> | ||
<div class="title col-sm-12"> | ||
<p>testInventoryTableView</p> | ||
</div> | ||
<div class="time col-sm-12"> | ||
<p>0.017s</p> | ||
</div> | ||
</div> | ||
<div class="passing row"> | ||
<div class="title col-sm-12"> | ||
<p>testLoadingIndicatorView</p> | ||
</div> | ||
<div class="time col-sm-12"> | ||
<p>0.022s</p> | ||
</div> | ||
</div> | ||
<div class="passing row"> | ||
<div class="title col-sm-12"> | ||
<p>testMessageLabel</p> | ||
</div> | ||
<div class="time col-sm-12"> | ||
<p>0.021s</p> | ||
</div> | ||
</div> | ||
<div class="passing row"> | ||
<div class="title col-sm-12"> | ||
<p>testSendXMLInventory</p> | ||
</div> | ||
<div class="time col-sm-12"> | ||
<p>0.053s</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> |