1.0.19 • Published 1 year ago

tr_cypress_reporter_simple v1.0.19

Weekly downloads
35
License
ISC
Repository
github
Last release
1 year ago

TestRail reporter for Cypress

Updates

Version 1.0.00

  1. Fixed registration of cases that are not in the test code, but are on TR

Version 1.0.00

  1. import optimization
  2. added building multi-level cascading sections based on folders and subfolders in your tests
  3. The first load of tests is still slow (depending on the number of tests and their structure), but all subsequent checks and loads are much faster.

Version 0.7.0

  • Added new methods:
let tr = new TestRaiImporter(run_data);

// Save run data to the local folder 
tr.saveArtifact('./artifact/')

// Get saved data and deploy to TR 
tr.updateSuiteCasesFromArtifacts('./artifact/');

// Update satuses from file 
tr.importStatusesToNewRunFromArtifacts(false, './artifact/');
  • Import optimization

Version: 0.5.0

  • Optimize imports data to TR
  • Optimize all requests

Version: 0.2

  • Optimize imports data to TR
  • Fix upload non-exist images
  • Removing not used requests from importer

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.

1.0.19

1 year ago

0.7.11

2 years ago

1.0.18

2 years ago

1.0.1

2 years ago

0.7.10

2 years ago

0.7.9

2 years ago

1.0.17

2 years ago

1.0.0

2 years ago

1.0.16

2 years ago

0.7.6

2 years ago

0.7.5

2 years ago

0.7.8

2 years ago

0.7.7

2 years ago

0.7.2

2 years ago

0.7.1

2 years ago

0.7.4

2 years ago

0.7.3

2 years ago

1.0.15

2 years ago

0.7.0

2 years ago

0.5.0

2 years ago

0.5.1

2 years ago

0.2.0

2 years ago

0.1.8

3 years ago

0.1.9

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago