diff options
author | grakiss <grakiss.wanglei@huawei.com> | 2017-10-19 03:36:04 -0400 |
---|---|---|
committer | grakiss <grakiss.wanglei@huawei.com> | 2017-10-19 03:36:04 -0400 |
commit | 4f2c6191c68567e3fd7ee7e8bcb737c3194fbb2e (patch) | |
tree | 1e4ddb154911760703ab356691225764716a672e /cvp/3rd_party/static/testapi-ui/components/results-report/partials | |
parent | ea0354ea16202b9d49e7320317a65402bab8f811 (diff) |
[web-cvp]Direct drill-down for failed tests
JIRA: DOVETAIL-531
people may want to directly drill-down to the exact log file of each results, instead of searching in piles of log files.
Change-Id: I6e18b8d57739fd695e20ee29147e796de5c9e404
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
Diffstat (limited to 'cvp/3rd_party/static/testapi-ui/components/results-report/partials')
-rw-r--r-- | cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html b/cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html index 9f8ed140..091cab88 100644 --- a/cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html +++ b/cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html @@ -42,7 +42,7 @@ Test Filters:<br /> <span ng-if="ctrl.testStatus == 'passed'" class="text-success">[{{ testcase.pass }}]</span> <span ng-if="ctrl.testStatus == 'not passed'" class="text-danger">[{{ testcase.fail }}]</span> </a> - + <a uib-tooltip="view log" ng-click="ctrl.gotoResultLog(testcase.build_tag.split('-').pop())"><span class="glyphicon glyphicon-cog"></a> <ul class="list-unstyled" uib-collapse="testcase.folder"> <li ng-if="!testcase.details.success"> <span ng-class="{'glyphicon glyphicon-ok text-success':testcase.criteria == 'PASS'}" aria-hidden="true"></span> |