UNPKG

@nx-plugins/stryker

Version:

The Nx Plugin for Stryker that contains executors and generators for allowing your workspace to use powerful Stryker mutation testing capabilities.

51 lines 1.22 kB
{ "$schema": "http://json-schema.org/schema", "cli": "nx", "$id": "PackagesStryker", "title": "", "type": "object", "properties": { "project": { "type": "string", "description": "The name of the project.", "$default": { "$source": "projectName" } }, "mutate": { "type": "string", "description": "indicates whether Stryker should mutate the files configure the subset of files to be mutated", "default": "demo" }, "reporters": { "type": "string", "description": "configure the reporters", "default": "html,clear-text,progress" }, "coverageAnalysis": { "description": "Specify which coverage analysis strategy to use.", "enum": [ "off", "all", "perTest" ], "type": "string", "default": "perTest" }, "logLevel": { "type": "string", "enum": [ "off", "fatal", "error", "warn", "info", "debug", "trace" ], "description": "Set the log level to write to the console.", "default": "info" } }, "required": [] }