
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
pactum-swagger-coverage
Advanced tools
JSON swagger/openapi3 coverage reporter for Pactum tests. It's capable of reading the swagger/oas3 definitions from either swagger.yaml
or swagger.json
or openapi3.yaml
(served on a http server endpoint).
npm install --save-dev pactum pactum-swagger-coverage
const pactum = require('pactum');
const psc = require('pactum-swagger-coverage');
const reporter = pactum.reporter;
// global before block
before(() => {
reporter.add(psc);
});
// global after block
after(() => {
return reporter.end();
});
const psc = require('pactum-swagger-coverage');
// name of the report file - defaults to "swagger-cov-report.json"
psc.reportFile = 'report-name.json';
// folder path for the report file - defaults to "./reports"
psc.reportPath = './reports-path';
/**
* base path - defaults to `basePath` for swagger 2.0/openapi2 and first server url
* or empty if either of them doesn't exist or not set explicitly
*/
psc.basePath = '/api/server/v1';
// Swagger json url of the server - defaults to ""
psc.swaggerJsonUrl = "http://localhost:3010/api/server/v1/json";
// Swagger Yaml file path - defaults to ""
psc.swaggerYamlPath = './tests/testObjects/swagger.yaml';
{
"basePath": "/api/server/v1",
"coverage": 0.2,
"coveredApiCount": 1,
"missedApiCount": 4,
"totalApiCount": 5,
"coveredApiList": [
"/getallninjas"
],
"missedApiList": [
"/health",
"/getninjabyid/{id}",
"/getninjabyname/{name}",
"/getninjabyrank/{rank}"
]
}
Note: Either 'swaggerJsonUrl' or 'swaggerYamlPath' should be provided for reporter to work.
Read more about Pactum here.
Inspired by swagger-coverage-postman.
FAQs
Swagger api coverage report for pactum tests
The npm package pactum-swagger-coverage receives a total of 179 weekly downloads. As such, pactum-swagger-coverage popularity was classified as not popular.
We found that pactum-swagger-coverage 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.