You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am integrating this package, my framework is in Webdriverio and Cucumber, I use the configuration in the README in first instance, but I realize that never include in the run the test cases. Then I see your code and detected your README is out of date, because for correct execution with the includeAll: true we need to include the interface useCucumber: true.
With both parameter in true execute the run and report correctly. But if we use includeAll: false always create the build in testRail platform without test cases. Do you think you can help me with the correct configuration, or update the documentation?
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
}
]
],
Best regards and I look forward to your response.
The text was updated successfully, but these errors were encountered:
@RocioCruzSincludeAll is a flag in TestRail test runs. When set to true, the run will include all test cases in the suite, then results are added to each test as they are executed. When set to false, no test cases will be included and only added when there is a result.
If you have includeAll: false and you never see test cases in the run it means results are not being added to the test run.
Hi, I am integrating this package, my framework is in Webdriverio and Cucumber, I use the configuration in the README in first instance, but I realize that never include in the run the test cases. Then I see your code and detected your README is out of date, because for correct execution with the
includeAll: true
we need to include the interfaceuseCucumber: true
.With both parameter in
true
execute the run and report correctly. But if we useincludeAll: false
always create the build in testRail platform without test cases. Do you think you can help me with the correct configuration, or update the documentation?Best regards and I look forward to your response.
The text was updated successfully, but these errors were encountered: