An open API service indexing awesome lists of open source software.

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

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
};
```