![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@wdio/testrail-reporter
Advanced tools
Create a run on testrail and the update the test cases results
This reporter creates TestRail reports. The first thing you need is to enable the TestRail API so that report can communicate with TestRail and push the test results. To do so, log into your TestRail account and go to Administration > Site Settings > API and make sure you click the checkbox near Enable API.
Add TestRail's test case ID to the test description. e.g.
it("C123456 Page loads correctly", async () => {
This also supports multiple caseIDs. e.g.
it("C123456 C678910 Page loads correctly", async () => {
To use the reporter, add it to your package.json
:
npm i --save-dev @wdio/testrail-reporter
Add the reporter to your WDIO config file:
export const config = {
// ...
reporters:
[
['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
caseIdTagPrefix: '' // used only for multi-platform Cucumber Scenarios
}
]
],
// ...
}
projectId
ID of the testrail project.
Type: string
suiteId
ID of the suite, suite 1 is default.
Type: string
domain
Domain of your testrail instance, e.g. your-domain.testrail.io
.
Type: string
username
Username of your testrail instance.
Type: string
apiToken
API token of your testrail instance.
Type: string
runName
Custom name for the test run.
Type: string
oneReport
Create a single test run.
Type: boolean
includeAll
Include all tests in suite in test run.
Type: boolean
caseIdTagPrfix
Prefix use to locate for case ID in Cucumber tags, useful for multi-platform Cucumber Scenario executions
Type: string
For more information on WebdriverIO see the homepage.
FAQs
Create a run on testrail and the update the test cases results
The npm package @wdio/testrail-reporter receives a total of 930 weekly downloads. As such, @wdio/testrail-reporter popularity was classified as not popular.
We found that @wdio/testrail-reporter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.