reportportal / agent-js-cucumber

Agent to integrate CucumberJS with ReportPortal.
https://www.npmjs.com/package/@reportportal/agent-js-cucumber
Apache License 2.0
11 stars 17 forks source link

DEBUG mode in the config file does not report to Debug #130

Closed MatanNoachNice closed 1 year ago

MatanNoachNice commented 1 year ago

Hi,

I am trying to make reports that project members running locally reach the DEBUG section in the report portal, but the "mode":"DEBUG" in the config file does not seem to work, and the tests are still presented in the Launches section.

I am using the examples-js repository as an example and running "simpleTest". I updated the config file like this:

{
  "token": "{my_token}",
  "endpoint": "{my_endpoint}/api/v1",
  "launch": "cucumber-js-test",
  "project": "{my_project}",
  "mode": "DEBUG",
  "attributes": [
    {
      "key": "launchK",
      "value": "launchV"
    }
  ],
  "description": "DESCRIPTION"
}

And the results look like this: image

Am I missing something?

P.S. I also turned the "debug": true flag, but the results are the same

Bam6ycha commented 1 year ago

@MatanNoachNice, Hello there! We released a new version of Agent. In that version, this issue was fixed.

MatanNoachNice commented 1 year ago

Thanks @Bam6ycha. It works now!