Socket
Socket
Sign inDemoInstall

mutation-testing-report-schema

Package Overview
Dependencies
0
Maintainers
2
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mutation-testing-report-schema

The json schema for a mutation testing report.


Version published
Weekly downloads
80K
decreased by-0.49%
Maintainers
2
Install size
41.3 kB
Created
Weekly downloads
 

Changelog

Source

3.0.4 (2024-04-04)

Note: Version bump only for package root

Readme

Source

Build Status

Mutation testing elements schema

The json schema for mutation testing elements.

The schema can be found here.

JavaScript

Install it with npm like this:

$ npm i mutation-testing-report-schema

Use it from typescript or js (with babel)

import { schema } from 'mutation-testing-elements-schema';

For example, use AJV:

const schemaValidator = new Ajv();
schemaValidator.addSchema(schema, 'mutation-testing-report-schema');
schemaValidator.validate('mutation-testing-report-schema', {
  /*.. report as json ...*/
});

Other languages

Download the schema using https://www.unpkg.com/mutation-testing-report-schema@VERSION/dist/src/mutation-testing-report-schema.json

For the current version, see package.json.

FAQs

Last updated on 04 Apr 2024

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