Publishes Cypress runs on TestRail.
Forked from the original package salty-cypress-testrail-reporter by Spencer Kekauoha
$ npm install git+ssh://[email protected]:onemedical/cypress-testrail-reporter.git --save-dev
Add reporter to your cypress.json
:
...
{
"reporter": "cypress-testrail-reporter",
"reporterOptions": {
"domain": "yourdomain.testrail.com",
"username": "username",
"password": "password",
"projectId": idNumber,
"runId": testRunNumber,
}
}
Your Cypress tests should include the ID of your TestRail test case. Make sure your test case IDs are distinct from your test titles:
// Good:
it("C123 C124 Can authenticate a valid user", ...
it("Can authenticate a valid user C321", ...
// Bad:
it("C123Can authenticate a valid user", ...
it("Can authenticate a valid userC123", ...
domain: string domain name of your TestRail instance (e.g. for a hosted instance instance.testrail.com).
username: string email of the user under which the test run will be created.
password: string password or the API key for the aforementioned user.
projectId: number project with which the tests are associated.
runId: number (optional: only necessary if createTestRun is set to true) a specific test run id number.
- Updates the existing test run by pushing tbe test results from the automated test run execution.
- Does not require test suite id, only test run id is required
- TODO: figure out the way of publishing the test results in the project based on multiple test suites
To increase security, the TestRail team suggests using an API key instead of a password. You can see how to generate an API key here.
If you maintain your own TestRail instance on your own server, it is recommended to enable HTTPS for your TestRail installation.
For TestRail hosted accounts maintained by Gurock, all accounts will automatically use HTTPS.
You can read the whole TestRail documentation here.
Author: Yulduz Ibragimova - github
This project is licensed under the MIT license.
- Milutin Savovic, author of the cypress-testrail-reporter repository the forked repository was cloned from (see below)
- Spencer Kekauoha, owner of the salty-cypress-testrail-reporter repository that was forked.