I am not able to add a new step.
I need to add a step in my report for a negative scenario. I had referred the documentation https://www.npmjs.com/package/@wdio/allure-reporter.
const { addFeature } = require('@wdio/allure-reporter').default
describe('Suite', () => {
it('Case', () => {
addStep('**exceptions**')
})
})
I am using allure report 5.3.4
"@wdio/allure-reporter": "^5.3.4",