New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

stryker-api

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stryker-api - npm Package Compare versions

Comparing version 0.3.0-rc3 to 0.3.0-rc4

2

package.json
{
"name": "stryker-api",
"version": "0.3.0-rc3",
"version": "0.3.0-rc4",
"description": "The api for the extendable JavaScript mutation testing framework Stryker",

@@ -5,0 +5,0 @@ "scripts": {

@@ -12,4 +12,6 @@ import { StrykerOptions } from '../../core';

reporter: string[];
coverageAnalysis: 'perTest';
coverageAnalysis: 'perTest' | 'all' | 'off';
testRunner: string;
testFramework: string;
set(newConfig: StrykerOptions): void;
}
declare enum MutantStatus {
/**
* The status of an untested Mutant.
* The status of a survived mutant, because it was not covered by any test.
*/
UNTESTED = 0,
NoCoverage = 0,
/**
* The status of a killed Mutant.
* The status of a killed mutant.
*/
KILLED = 1,
Killed = 1,
/**
* The status of a survived Mutant.
* The status of a survived mutant.
*/
SURVIVED = 2,
Survived = 2,
/**
* The status of a timed out Mutant.
* The status of a timed out mutant.
*/
TIMEDOUT = 3,
TimedOut = 3,
}
export default MutantStatus;

@@ -5,17 +5,17 @@ "use strict";

/**
* The status of an untested Mutant.
* The status of a survived mutant, because it was not covered by any test.
*/
MutantStatus[MutantStatus["UNTESTED"] = 0] = "UNTESTED";
MutantStatus[MutantStatus["NoCoverage"] = 0] = "NoCoverage";
/**
* The status of a killed Mutant.
* The status of a killed mutant.
*/
MutantStatus[MutantStatus["KILLED"] = 1] = "KILLED";
MutantStatus[MutantStatus["Killed"] = 1] = "Killed";
/**
* The status of a survived Mutant.
* The status of a survived mutant.
*/
MutantStatus[MutantStatus["SURVIVED"] = 2] = "SURVIVED";
MutantStatus[MutantStatus["Survived"] = 2] = "Survived";
/**
* The status of a timed out Mutant.
* The status of a timed out mutant.
*/
MutantStatus[MutantStatus["TIMEDOUT"] = 3] = "TIMEDOUT";
MutantStatus[MutantStatus["TimedOut"] = 3] = "TimedOut";
})(MutantStatus || (MutantStatus = {}));

@@ -22,0 +22,0 @@ Object.defineProperty(exports, "__esModule", { value: true });

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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