Skip to content

Commit

Permalink
Added missing function call for counting log entries
Browse files Browse the repository at this point in the history
  • Loading branch information
Evilweed committed Apr 20, 2017
1 parent 9682a93 commit b092a89
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## Version 0.4.4
* Added missing function call for counting log entries

## Version 0.4.3
* Disabled sym-link for enterprise users

Expand Down
4 changes: 3 additions & 1 deletion lib/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ app.filter('bySearchSettings', function () {
var item = items[i];
item.displaySpecName = false;

countLogMessages(item);

var hasLog = searchSettings.withLog && item.browserLogs && item.browserLogs.length > 0;
if (searchSettings.description === '' ||
(item.description && item.description.toLowerCase().indexOf(searchSettings.description.toLowerCase()) > -1)) {
Expand Down Expand Up @@ -192,4 +194,4 @@ var countLogMessages = function (item) {
}
}
}
}
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "protractor-beautiful-reporter",
"version": "0.4.3",
"version": "0.4.4",
"description": "An npm module and which generates your Protractor test reports in HTML (angular) with screenshots",
"main": "index.js",
"repository": {
Expand Down

0 comments on commit b092a89

Please sign in to comment.