JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q47339F
  • License ISC

This is a simple module designed to easily upload information about tests to a testrail. The module does not use asynchronous requests and you can easily inject methods into the Cypress context.

Package Exports

  • tr_cypress_reporter_simple
  • tr_cypress_reporter_simple/reporter/TestRaiImporter.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tr_cypress_reporter_simple) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

TestRail reporter for Cypress

First step:

The first step is to enable the experimental Cypress feature: "experimentalRunEvents": true Then you need to add a new event to cypress/plugins/index.js

on('after:run', (run, results) => {
})

Now receive data from a Run object.

Next step:

  • add the tr_credentials.json file to the project root
{
  "host": "https://<name>.testrail.net",
  "username": "",
  "password": "",
  "project_name": "",
  "suite_name": ""
}
  • Add to the new event:
const TestRaiImporter = require("tr_cypress_reporter_simple");
****
on('after:run', (run, results) => {
    let tr = new TestRaiImporter(run);
    tr.updateSuiteCases();
    tr.importStatusesToNewRun();
})
  • You can also close RUN. If you leave the parameter empty, RUN will not be closed.
const TestRaiImporter = require("tr_cypress_reporter_simple");
****
on('after:run', (run, results) => {
    let tr = new TestRaiImporter(run);
    tr.updateSuiteCases();
    tr.importStatusesToNewRun(true);
})

The data will be sent only after starting RUN.