Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
api-testrail
Advanced tools
[![npm version](https://badge.fury.io/js/api-testrail.svg)](https://badge.fury.io/js/api-testrail) ### An API wrapper for TestRail with error handling
The TestRail API is described here
Of cource, you need to setup the API wrapper :
import ApiTestRail from 'api-testrail';
const apitestrail = new ApiTestRail(
host,
username,
password
);
Returns an existing test case
testrail.getCase (caseId) {
return /*testCase Data*/;
}
Returns a list of test cases for a project
testrail.getAllCases(projectId) {
return /*All testCases Data*/;
}
Returns a list of test cases IDs for a project and case type
testrail.getCasesIDsByType (projectId, typeId) {
return /*list of IDs*/;
}
Return all tests for a test run
testrail.getTests (runId) {
return /*tests data*/;
}
Returns a list of test results for a test run (except untested tests)
testrail.getResultsForRun (runId) {
return /*tests data*/;
}
Returns a status of case
testrail.getResultForCase (runId, caseId) {
return /*statusId of case*/;
}
Creates a new test run and returns run ID
testrail.addRun (projectId, suiteId = 1) {
return /*runId*/;
}
Creates a new test run for specific case type and returns run ID
testrail.addRunWithType (project_id, type_id, suite_id = 1) {
return /*runId*/;
}
Adds a new test result and comment for a test
testrail.addResult (testId, statusId, comment = '') {
return /*test data*/;
}
Adds a new test result and comment for a case
testrail.addResultForCase (runId, caseId, status_id, comment = '') {
return /*case data*/;
}
Returns a list of users
testrail.getUsers () {
return /*users data*/;
}
Passed - 1
Blocked - 2
Untested - 3
Retested - 4
Failed - 5
Acceptance - 1
Accessibility - 2
Automated - 3
Compatibility - 4
Destructive - 5
Functional - 6
Other (Default) - 7
Performance - 8
Regression - 9
Security - 10
Smoke & Sanity - 11
Usability - 12
FAQs
[![npm version](https://badge.fury.io/js/api-testrail.svg)](https://badge.fury.io/js/api-testrail) ![GitHub package.json version (branch)](https://img.shields.io/github/package-json/v/stepanchaparyan/testrailapi/master.svg) [![Build Status](https://travis
The npm package api-testrail receives a total of 14 weekly downloads. As such, api-testrail popularity was classified as not popular.
We found that api-testrail demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.