Skip to content

Commit

Permalink
restore count of user stories covered and total user stories
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrjo committed Dec 12, 2018
1 parent 3cc6f40 commit 81902a4
Show file tree
Hide file tree
Showing 5 changed files with 1,831 additions and 12 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Feature Test Case Coverage Report",
"sdk": "2.1",
"version": "0.1",
"version": "1.0.1",
"className": "CArABU.app.TSApp",
"artifact": "F425"
}
12 changes: 7 additions & 5 deletions deploy/App.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>CATS-Feature Test Case Coverage Report-0.1</title>
<title>CATS-Feature Test Case Coverage Report-1.0.1</title>
<!-- (c) 2017 CA Technologies. All Rights Reserved. -->
<!-- Build Date: Mon Aug 13 2018 13:35:59 GMT-0700 (PDT) -->
<!-- Build Date: Wed Dec 12 2018 21:43:39 GMT+0000 (UTC) -->

<script type="text/javascript">
var APP_BUILD_DATE = "Mon Aug 13 2018 13:35:59 GMT-0700 (PDT)";
var APP_BUILD_DATE = "Wed Dec 12 2018 21:43:39 GMT+0000 (UTC)";
var ARTIFACT = "F425";
var BUILDER = "rajan08";
var CHECKSUM = 62933385179;
var BUILDER = "ec2-user";
var CHECKSUM = 63179581820;
</script>

<script type="text/javascript" src="/apps/2.1/sdk.js"></script>
Expand Down Expand Up @@ -1384,6 +1384,8 @@ Ext.define("CArABU.app.TSApp", {
r.set('Failing', totalFail);
r.set('NoRun', totalNoRun);
r.set('Other', totalOther);
r.set('TotalStories', totalStories);
r.set('TotalCovered', totalCovered);
});
me.resumeLayouts();
},
Expand Down
12 changes: 6 additions & 6 deletions deploy/Ugly.txt

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/javascript/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,8 @@ Ext.define("CArABU.app.TSApp", {
r.set('Failing', totalFail);
r.set('NoRun', totalNoRun);
r.set('Other', totalOther);
r.set('TotalStories', totalStories);
r.set('TotalCovered', totalCovered);
});
me.resumeLayouts();
},
Expand Down
Loading

0 comments on commit 81902a4

Please sign in to comment.