allure-framework / allure-js

Allure integrations for JavaScript test frameworks
https://allurereport.org/
Apache License 2.0
230 stars 124 forks source link

[v3.0.6][CodeceptJS] Method arguments are not displayed in the step title after updating from version v2.15.1 to v3.0.6 #1197

Open asolodova opened 1 week ago

asolodova commented 1 week ago

Describe the bug In version v2.15.1 all arguments were displayed in one line along with the step name. After the update, to view the arguments, it is necessary to expand the step.

Screenshot 2024-11-22 at 13 19 21

To Reproduce

  1. Use test
    Scenario('Redirect to login page unauthorized user @TC-681', () => {
    I.amOnPage('https://google.com')
    I.see('ffff');
    })
  2. Run test
  3. Generate allure report

Expected behavior All arguments are displayed in the same line as the step name.

Screenshot 2024-11-22 at 13 19 50

myrepojuly1987 commented 3 days ago

Facing the same issue with the latest version. @baev Could you please look into this? Is it possible to remove arg0, arg1 and modify the arguments to display on the same line as the step name, as suggested above

image