I am integrating this package, my framework is in Webdriverio and Cucumber, I use the configuration in the README but with includeAll: false, never add the test cases to my run in test rail plataform. i use this configuration in webdriverio for muy features.
and in testrail are like this: testrail test cases
reporters: ['spec',
['testrail', {
projectId: 1,
suiteId: 1,
domain: 'xxxxx.testrail.io',
username: process.env.TESTRAIL_USERNAME,
apiToken: process.env.TESTRAIL_API_TOKEN,
runName: 'name for the test run',
oneReport: true,
includeAll: false,
useCucumber: true,
caseIdTagPrefix: 'C' // used only for multi-platform Cucumber Scenarios
}
]
],
The result is: when create the run is empty, without test cases, and when wdio try to update there are no test cases and response with 400. run empty in testrail AxiosError: Request failed with status code 400.
Please, someone has experienced the same thing, who can bring light to this issue
resolved the correct configuration or another approach