Socket
Socket
Sign inDemoInstall

testcafe-reporter-testrail

Package Overview
Dependencies
15
Maintainers
2
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    testcafe-reporter-testrail

Testcafe reporter plugin that automatically publishes test run details to the TestRail system.


Version published
Weekly downloads
925
increased by7.06%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

NPM NPM NPM

Description

Reporter plugin that sends test results to TestRail

It does not provide test output to console, please use with combination with the default reporter

Usage

  1. Installation

    npm install testcafe-reporter-testrail --save-dev

  2. Add reporter to testrail configuration. Make sure to also include default reporter if reporters option was not provided

    Command Line:

    testcafe chrome tests/* -r spec,testrail:out.xml
    

    API:

    testCafe
        .createRunner()
        .src('path/to/test/file.js')
        .browsers('chrome')
        .reporter(['spec', { name: 'testrail', output: '' }]) // <-
        .run();
    
  3. Provide required options from the configuration section

Prerequisites

  • All test cases should have a valid mapping between TestCafe and TestRail. TestRail Case ID should be put into TestCafe test metadata. (Example: test.meta({CID: 'C123'})('test name', async t => { .... });)

Configuration

Configuration can be provided via:

  • ENV variables
  • configuration file (.testrailrc)
ENV VariableConfigDescriptionDefaultRequired
TESTRAIL_ENABLEDenabledEnables TestRail integration.false
TESTRAIL_HOSThostURL of the TestRail instance.true
TESTRAIL_USERuserAccount name which will be used to push results.true
TESTRAIL_API_KEYapiKeyAPI key which can be generated on the profile page in TestRail.true
TESTRAIL_PROJECT_IDprojectIdProject id in which test cases are stored. Ex. P123true
TESTRAIL_SUITE_IDsuiteIdSuite id in which test cases are stored. Ex. S123true
TESTRAIL_RUN_IDrunIdRun id which test cases are stored. Ex R123
TESTRAIL_CASE_METAcaseMetaMeta attribute to be used to get TestRail case id mapping.'CID'
TESTRAIL_RUN_NAMErunNameTest Run name. Configurable with variables
  • %BRANCH% - see config option branchEnv
  • %BUILD% - see config option buildNoEnv
  • %DATE% - see config option dateFormat
%BRANCH%#%BUILD% - %DATE%
TESTRAIL_RUN_DESCRIPTIONrunDescriptionYou can provide you own Test Run description. If this option is not configured, it will contain test results and test coverage.
TESTRAIL_REFERENCEreferenceString that will be added to the refs field in TestRail. This can enable integration with other tools like https://github.com/DamianOsipiuk/jest-reporter-testrail/. Configurable with variables
  • %BRANCH% - see config option branchEnv
  • %BUILD% - see config option buildNoEnv
TESTRAIL_BRANCH_ENVbranchEnvWhich ENV variable is used to store branch name on which tests are run.BRANCH
TESTRAIL_BUILD_NO_ENVbuildNoEnvWhich ENV variable is used to store build number of tests run.BUILD_NUMBER
TESTRAIL_DATE_FORMATdateFormatWhat date format should be used for %DATE% placeholder. https://momentjs.com/ formats supported.YYYY-MM-DD HH:mm:ss
TESTRAIL_RUN_CLOSE_AFTER_DAYSrunCloseAfterDaysAfter how many days should reporter close old Runs in testrail.
TESTRAIL_UPLOAD_SCREENSHOTSuploadScreenshotsShould upload screenshots to testrail. Requires test result edit enabled in testrail.false
TESTRAIL_UPLOAD_VIDEOSuploadVideosShould upload videos to testrail. Requires test result edit enabled in testrail.false
TESTRAIL_UPDATE_RUN_TEST_CASESupdateRunTestCasesTells to the reporting tool to no create or update the given test run, you need to create the mapping for the testcases manuallytrue

Keywords

FAQs

Last updated on 12 Oct 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc