https://github.com/angular/protractor-timeline-plugin
Gathers test timeline information and presents the output visually
https://github.com/angular/protractor-timeline-plugin
Last synced: 9 months ago
JSON representation
Gathers test timeline information and presents the output visually
- Host: GitHub
- URL: https://github.com/angular/protractor-timeline-plugin
- Owner: angular
- License: mit
- Archived: true
- Created: 2015-11-08T22:43:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-17T22:58:12.000Z (over 9 years ago)
- Last Synced: 2024-09-26T11:03:04.155Z (almost 2 years ago)
- Language: JavaScript
- Size: 219 KB
- Stars: 18
- Watchers: 12
- Forks: 13
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Timeline Plugin
===============
This plugin gathers test timeline information from the protractor test process, the selenium
client logs (if available), and sauce labs (if available), and presents the output visually.
This improves understanding of where latency issues are in tests.
To enable the Timeline plugin, set it up in your config file:
```js
exports.config = {
plugins: [{
package: 'protractor-timeline-plugin',
// Output json and html will go in this folder.
outdir: 'timelines',
// Set the name of the html file. Defaults to index.html.
outputHtmlFileName: 'results.html'
// Optional - if sauceUser and sauceKey are specified, logs from
// SauceLabs will also be parsed after test invocation.
sauceUser: 'Jane',
sauceKey: 'abcdefg'
}],
// other configuration settings
};
```