diff --git a/CHANGES.md b/CHANGES.md index a3e0dd0..4ec7999 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,7 @@ # Changelog ## Version 1.3.3 -* Added: Options for showing total duration in report -* Upgraded: Using nyc instead of istanbul for test coverage +* Fixed: browser version was missing in report +* Added: Options for showing total duration in report ## Version 1.3.2 * Fixed: OS column in report is empty (with browsers other than chrome) * Removed: Unused code for jasmine 1 (defaultMetadataBuilder) diff --git a/README.md b/README.md index d078b92..7a6dc54 100644 --- a/README.md +++ b/README.md @@ -392,13 +392,12 @@ add the following to columnSettings (values are in milliseconds scale): baseDirectory: 'reports' , clientDefaults:{ showTotalDurationIn: "header", - totalDurationFormat: "hms", + totalDurationFormat: "hms" } }); ``` For all possible values for `showTotalDurationIn` and `totalDurationFormat` refer to the wiki entry [Options for showing total duration of e2e test](https://github.com/Evilweed/protractor-beautiful-reporter/wiki/Options-for-showing-total-duration-of-e2e-test) - ### Load spec results via ajax By default the raw data of all tests results from the e2e session are embedded in the main javascript file (array results in app.js). If you add `useAjax:true` to `clientDefaults` the data is not embedded in the app.js but is loaded from the file `combined.json` which contains all the raw test results. diff --git a/package.json b/package.json index 3c2af98..a3b20b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "protractor-beautiful-reporter", - "version": "1.3.2", + "version": "1.3.3", "description": "An npm module and which generates your Protractor test reports in HTML (angular) with screenshots", "main": "index.js", "repository": {