Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mutation-testing-report-schema

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mutation-testing-report-schema

The json schema for a mutation testing report.

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
135K
increased by11.88%
Maintainers
1
Weekly downloads
 
Created

What is mutation-testing-report-schema?

The mutation-testing-report-schema npm package provides a schema for mutation testing reports. It is used to validate and ensure consistency in the format of reports generated by mutation testing tools. Mutation testing is a method of software testing where the source code is modified in small ways to test if the existing test cases can detect the changes.

What are mutation-testing-report-schema's main functionalities?

Schema Validation

The mutation-testing-report-schema provides a JSON schema to validate mutation testing reports. This ensures that the reports adhere to a standard structure, making it easier to process and analyze them.

{ "type": "object", "properties": { "files": { "type": "object" }, "schemaVersion": { "type": "string" } }, "required": ["files", "schemaVersion"] }

Consistent Report Structure

By using the schema, reports generated by different mutation testing tools can have a consistent structure. This example shows a simple report structure with a file containing mutants and their statuses.

{ "files": { "example.js": { "mutants": [ { "id": "1", "status": "Killed", "mutatorName": "StringLiteral" } ] } }, "schemaVersion": "1.0" }

Other packages similar to mutation-testing-report-schema

FAQs

Package last updated on 17 Jun 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc