Skip to content

Commit

Permalink
wdio-cli: remove timeline option from reporters (#3501)
Browse files Browse the repository at this point in the history
## Proposed changes

[//]: # (Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.)

The timeline reporter currently doesn't work in V5, so removing it for now
QualityOps/wdio-timeline-reporter#9

This comments out the timeline reporter from the config generator.

## Types of changes

[//]: # (What types of changes does your code introduce to WebdriverIO?)
[//]: # (_Put an `x` in the boxes that apply_)

- [x] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)

## Checklist

[//]: # (_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._)

- [x] I have read the [CONTRIBUTING](https://github.com/webdriverio/webdriverio/blob/master/CONTRIBUTING.md) doc
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have added necessary documentation (if appropriate)

## Further comments

[//]: # (If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...)

### Reviewers: @webdriverio/technical-committee
  • Loading branch information
klamping authored and christian-bromann committed Feb 4, 2019
1 parent b1483e9 commit f4f09ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wdio-cli/src/config.js
Expand Up @@ -16,8 +16,8 @@ export const SUPPORTED_REPORTER = [
' teamcity - https://www.npmjs.com/package/wdio-teamcity-reporter',
' json - https://www.npmjs.com/package/wdio-json-reporter',
' testrail - https://www.npmjs.com/package/wdio-testrail-reporter',
' mochawesome - https://www.npmjs.com/package/wdio-mochawesome-reporter',
' timeline - https://www.npmjs.com/package/wdio-timeline-reporter'
' mochawesome - https://www.npmjs.com/package/wdio-mochawesome-reporter'
// ' timeline - https://www.npmjs.com/package/wdio-timeline-reporter' not supported yet see https://github.com/QualityOps/wdio-timeline-reporter/issues/9
]

export const SUPPORTED_SERVICES = [
Expand Down

0 comments on commit f4f09ad

Please sign in to comment.