Socket
Socket
Sign inDemoInstall

mutation-testing-metrics

Package Overview
Dependencies
1
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mutation-testing-metrics

Utility functions to calculate mutation testing metrics.


Version published
Weekly downloads
85K
decreased by-0.16%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

1.7.4 (2021-07-13)

Bug Fixes

  • exports: add default export for the schema (#1255) (d516054)
  • package.json from package report-schema (0233173)

Readme

Source

Mutation testing badge Build Status

Mutation testing metrics

Utility function to calculate mutation testing metrics..

See mutant states and metrics in the Stryker handbook for more details about mutation testing metrics.

Usage example

See the below example (uses TypeScript):

import { MetricsResult, calculateMetrics } from 'mutation-testing-metrics';
import { MutationTestResult } from 'mutation-testing-report-schema';

const mutationTestReport: MutationTestResult = {
  /*... Get a holds of mutation test results somehow */
};

const result: MetricsResult = calculateMetrics(mutationTestReport);

console.log('Mutation score', result.metrics.mutationScore);

API Reference

calculateMetrics [(MutationTestResult) => MetricsResult]

Calculates the metrics for a MutationTestResult. This result must be valid according to the [https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/report-schema#readme].

MetricsResult

A MetricsResult has a metrics property containing the following metrics:

  • killed
  • timeout
  • survived
  • noCoverage
  • runtimeErrors
  • compileErrors
  • ignored
  • totalDetected
  • totalUndetected
  • totalValid
  • totalInvalid
  • mutationScore
  • totalMutants
  • mutationScoreBasedOnCoveredCode

It optionally has a file property which points to a FileResult (mutation-testing-report-schema) or one or more childResults if it represents a directory.

FAQs

Last updated on 13 Jul 2021

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