New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

newman-reporter-qase

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

newman-reporter-qase

Qase TMS Newman Reporter

2.0.0-beta.2
beta
Version published
Weekly downloads
382
30.82%
Maintainers
2
Weekly downloads
 
Created

Qase TMS Newman reporter

Publish results simple and easy.

The Newman reporter is currently in the closed beta stage. To install the latest beta version, run:

npm install newman-reporter-qase@beta

Example of usage

Define in tests

The Newman reporter has the ability to auto-generate test cases and suites from your test data.

But if necessary, you can independently register the ID of already existing test cases from TMS before the executing tests. Example:

//qase: 10
// Qase: 1, 2, 3
// qase: 4 5 6 14
pm.test('expect response be 200', function () {
    pm.response.to.be.info
})

Execute rom CLI:

QASE_MODE=testops newman run ./sample-collection.json -r qase

A test run will be performed and available at:

https://app.qase.io/run/QASE_PROJECT_CODE

Configuration

Qase reporter supports passing parameters using two ways: using .qaserc/qase.config.json file and using ENV variables.

.qaserc parameters, (* - required):

  • mode - testops/off Enables reporter, default - off
  • debug - Enables debug logging, defaule - false
  • environment - To execute with the sending of the envinroment information
  • *testops.api.token - Token for API access, you can find more information here
  • *testops.project - Code of your project (can be extracted from main page of your project: https://app.qase.io/project/DEMOTR - DEMOTR is project code here)
  • testops.run.id - Pass Run ID
  • testops.run.title - Set custom Run name, when new run is created
  • testops.run.description - Set custom Run description, when new run is created
  • testops.run.complete - Whether the run should be completed

Example configuration file:

{
  "mode": "testops",
  "debug": true,
  "environment": 1,
  "testops": {
    "api": {
      "token": "api_key"
    },
    "projectCode": "project_code"
  }
}

Supported ENV variables:

  • QASE_MODE - Same as mode
  • QASE_DEBUG - Same as debug
  • QASE_ENVIRONMENT - Same as environment
  • QASE_TESTOPS_API_TOKEN - Same as testops.api.token
  • QASE_TESTOPS_PROJECT - Same as testops.project
  • QASE_TESTOPS_RUN_ID - Pass Run ID from ENV and override reporter option testops.run.id
  • QASE_TESTOPS_RUN_TITLE - Same as testops.run.title
  • QASE_TESTOPS_RUN_DESCRIPTION - Same as testops.run.description

Requirements

We maintain the reporter on LTS versions of Node. You can find the current versions by following the link

newman >= 5.3.0

FAQs

Package last updated on 11 Jun 2024

Did you know?

Socket

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