mutation-testing-report-schema
Advanced tools
Comparing version 1.2.0 to 1.3.0
@@ -6,2 +6,15 @@ # Change Log | ||
# [1.3.0](https://github.com/stryker-mutator/mutation-testing-elements/compare/v1.2.3...v1.3.0) (2020-02-27) | ||
### Features | ||
* **ignored status:** add MutantStatus Ignored ([#239](https://github.com/stryker-mutator/mutation-testing-elements/issues/239)) ([68b2302](https://github.com/stryker-mutator/mutation-testing-elements/commit/68b23022d2c4d21d642edc17ef4905c77adffd35)), closes [#85](https://github.com/stryker-mutator/mutation-testing-elements/issues/85) | ||
* **line-numbers:** add line numbers in code samples ([#313](https://github.com/stryker-mutator/mutation-testing-elements/issues/313)) ([20b3eab](https://github.com/stryker-mutator/mutation-testing-elements/commit/20b3eabfb89e9791d7425531736a17964f35d93e)) | ||
# [1.2.0](https://github.com/stryker-mutator/mutation-testing-elements/compare/v1.1.1...v1.2.0) (2019-10-02) | ||
@@ -8,0 +21,0 @@ |
@@ -16,4 +16,5 @@ import { Location } from './Location'; | ||
RuntimeError = "RuntimeError", | ||
Timeout = "Timeout" | ||
Timeout = "Timeout", | ||
Ignored = "Ignored" | ||
} | ||
//# sourceMappingURL=MutantResult.d.ts.map |
export * from './api'; | ||
export declare const schema: { | ||
"$schema": string; | ||
"$id": string; | ||
"title": string; | ||
"type": string; | ||
"required": string[]; | ||
"properties": { | ||
"schemaVersion": { | ||
"type": string; | ||
"pattern": string; | ||
"title": string; | ||
"examples": string[]; | ||
$schema: string; | ||
$id: string; | ||
title: string; | ||
type: string; | ||
required: string[]; | ||
properties: { | ||
schemaVersion: { | ||
type: string; | ||
pattern: string; | ||
title: string; | ||
examples: string[]; | ||
}; | ||
"thresholds": { | ||
"type": string; | ||
"title": string; | ||
"required": string[]; | ||
"properties": { | ||
"high": { | ||
"type": string; | ||
"title": string; | ||
"minimum": number; | ||
"maximum": number; | ||
"examples": number[]; | ||
thresholds: { | ||
type: string; | ||
title: string; | ||
required: string[]; | ||
properties: { | ||
high: { | ||
type: string; | ||
title: string; | ||
minimum: number; | ||
maximum: number; | ||
examples: number[]; | ||
}; | ||
"low": { | ||
"type": string; | ||
"title": string; | ||
"minimum": number; | ||
"maximum": number; | ||
"examples": number[]; | ||
low: { | ||
type: string; | ||
title: string; | ||
minimum: number; | ||
maximum: number; | ||
examples: number[]; | ||
}; | ||
}; | ||
}; | ||
"files": { | ||
"type": string; | ||
"title": string; | ||
"definitions": { | ||
"position": { | ||
"type": string; | ||
"title": string; | ||
"required": string[]; | ||
"properties": { | ||
"line": { | ||
"type": string; | ||
"minimum": number; | ||
"examples": number[]; | ||
files: { | ||
type: string; | ||
title: string; | ||
definitions: { | ||
position: { | ||
type: string; | ||
title: string; | ||
required: string[]; | ||
properties: { | ||
line: { | ||
type: string; | ||
minimum: number; | ||
examples: number[]; | ||
}; | ||
"column": { | ||
"type": string; | ||
"minimum": number; | ||
"examples": number[]; | ||
column: { | ||
type: string; | ||
minimum: number; | ||
examples: number[]; | ||
}; | ||
@@ -58,65 +58,65 @@ }; | ||
}; | ||
"additionalProperties": { | ||
"type": string; | ||
"title": string; | ||
"required": string[]; | ||
"properties": { | ||
"language": { | ||
"type": string; | ||
"title": string; | ||
"examples": string[]; | ||
additionalProperties: { | ||
type: string; | ||
title: string; | ||
required: string[]; | ||
properties: { | ||
language: { | ||
type: string; | ||
title: string; | ||
examples: string[]; | ||
}; | ||
"source": { | ||
"type": string; | ||
"title": string; | ||
"examples": string[]; | ||
source: { | ||
type: string; | ||
title: string; | ||
examples: string[]; | ||
}; | ||
"mutants": { | ||
"type": string; | ||
"uniqueItems": boolean; | ||
"items": { | ||
"type": string; | ||
"title": string; | ||
"required": string[]; | ||
"properties": { | ||
"id": { | ||
"type": string; | ||
"title": string; | ||
"examples": string[]; | ||
mutants: { | ||
type: string; | ||
uniqueItems: boolean; | ||
items: { | ||
type: string; | ||
title: string; | ||
required: string[]; | ||
properties: { | ||
id: { | ||
type: string; | ||
title: string; | ||
examples: string[]; | ||
}; | ||
"mutatorName": { | ||
"type": string; | ||
"title": string; | ||
"examples": string[]; | ||
mutatorName: { | ||
type: string; | ||
title: string; | ||
examples: string[]; | ||
}; | ||
"replacement": { | ||
"type": string; | ||
"title": string; | ||
"examples": string[]; | ||
replacement: { | ||
type: string; | ||
title: string; | ||
examples: string[]; | ||
}; | ||
"description": { | ||
"type": string; | ||
"title": string; | ||
"examples": string[]; | ||
description: { | ||
type: string; | ||
title: string; | ||
examples: string[]; | ||
}; | ||
"location": { | ||
"type": string; | ||
"title": string; | ||
"required": string[]; | ||
"properties": { | ||
"start": { | ||
"$ref": string; | ||
"title": string; | ||
location: { | ||
type: string; | ||
title: string; | ||
required: string[]; | ||
properties: { | ||
start: { | ||
$ref: string; | ||
title: string; | ||
}; | ||
"end": { | ||
"$ref": string; | ||
"title": string; | ||
end: { | ||
$ref: string; | ||
title: string; | ||
}; | ||
}; | ||
}; | ||
"status": { | ||
"type": string; | ||
"title": string; | ||
"enum": string[]; | ||
"examples": string[]; | ||
status: { | ||
type: string; | ||
title: string; | ||
enum: string[]; | ||
examples: string[]; | ||
}; | ||
@@ -123,0 +123,0 @@ }; |
@@ -177,3 +177,4 @@ { | ||
"RuntimeError", | ||
"Timeout" | ||
"Timeout", | ||
"Ignored" | ||
], | ||
@@ -186,3 +187,4 @@ "examples": [ | ||
"RuntimeError", | ||
"Timeout" | ||
"Timeout", | ||
"Ignored" | ||
] | ||
@@ -189,0 +191,0 @@ } |
{ | ||
"name": "mutation-testing-report-schema", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "The json schema for a mutation testing report.", | ||
@@ -20,3 +20,3 @@ "main": "dist/src/index.js", | ||
"homepage": "https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/mutation-testing-elements#readme", | ||
"gitHead": "10760fdb36b30dc80b9db6885389bef11d71ef81" | ||
"gitHead": "fe44d6e0a273c267a5e5b49d39c53341e8476447" | ||
} |
@@ -0,1 +1,4 @@ | ||
[![Build Status](https://github.com/stryker-mutator/mutation-testing-elements/workflows/CI/badge.svg)](https://github.com/stryker-mutator/mutation-testing-elements/actions?query=workflow%3ACI+branch%3Amaster) | ||
# Mutation testing elements schema | ||
@@ -2,0 +5,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35132
404
37