Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WDIO Version 5 currently not supported #9

Closed
klamping opened this issue Feb 4, 2019 · 3 comments
Closed

WDIO Version 5 currently not supported #9

klamping opened this issue Feb 4, 2019 · 3 comments

Comments

@klamping
Copy link

klamping commented Feb 4, 2019

Trying to run this reporter in version 5 results in the following error:

Stderr:
[0-0] 2019-02-04T21:52:46.786Z ERROR wdio-local-runner: Failed launching test session: TypeError: ReporterClass is not a constructor
    at BaseReporter.initReporter (/Users/klamping/Sites/temp-wdio-reporters/node_modules/@wdio/runner/build/reporter.js:193:14)
    at Array.map (<anonymous>)
    at new BaseReporter (/Users/klamping/Sites/temp-wdio-reporters/node_modules/@wdio/runner/build/reporter.js:34:39)
    at Runner.run (/Users/klamping/Sites/temp-wdio-reporters/node_modules/@wdio/runner/build/index.js:82:21)
    at process.on.m (/Users/klamping/Sites/temp-wdio-reporters/node_modules/@wdio/local-runner/build/run.js:37:20)
    at emitTwo (events.js:131:20)
    at process.emit (events.js:214:7)
    at emit (internal/child_process.js:772:12)
    at _combinedTickCallback (internal/process/next_tick.js:141:11)
    at process._tickCallback (internal/process/next_tick.js:180:9)

I'm guessing this reporter needs to be updated to the new way reporters are constructed:
https://webdriver.io/docs/customreporter.html

To recreate:

  1. Get a new v5 test suite up and running
  2. Install and include the 'timeline' reporter in the list of reporters
  3. Try and run the tests
klamping added a commit to webdriverio/webdriverio that referenced this issue Feb 4, 2019
The timeline reporter currently doesn't work in V5, so removing it for now
QualityOps/wdio-timeline-reporter#9
klamping added a commit to webdriverio/webdriverio that referenced this issue Feb 4, 2019
wdio-timeline-reporter currently doesn't work in version 5, so commenting out for now:
QualityOps/wdio-timeline-reporter#9
christian-bromann pushed a commit to webdriverio/webdriverio that referenced this issue Feb 4, 2019
## 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
@christian-bromann
Copy link

When can we expect support for it?

@benzaremean
Copy link
Contributor

@christian-bromann @klamping I have updated reporter to work with v5. Will raise PR in a few days to add to supported list

@christian-bromann
Copy link

Will raise PR in a few days to add to supported list

Let me do that for you! Thanks for porting it over 👍

christian-bromann added a commit to webdriverio/webdriverio that referenced this issue May 21, 2019
yamkay pushed a commit to MoveInc/webdriverio that referenced this issue Jun 13, 2019
## 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
yamkay pushed a commit to MoveInc/webdriverio that referenced this issue Sep 4, 2019
## 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
yamkay pushed a commit to MoveInc/webdriverio that referenced this issue Sep 4, 2019
kimarakov added a commit to kimarakov/webdriver that referenced this issue Dec 29, 2021
## 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants