@schemastore/xunit.runner.schema 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -6
- package/index.d.ts +8 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# Type definitions for xunit.runner.schema
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm i @schemastore/xunit.runner.schema
|
|
7
|
+
yarn add @schemastore/xunit.runner.schema
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
3
11
|
|
|
4
|
-
# Summary
|
|
5
12
|
This package contains type definitions for xunit.runner.schema.
|
|
6
13
|
|
|
7
|
-
##
|
|
8
|
-
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
import * as xunit_runner_schema from '@schemastore/xunit.runner.schema';
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Note
|
|
21
|
+
|
|
22
|
+
The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
|
|
9
23
|
|
|
10
24
|
## Additional Details
|
|
11
|
-
|
|
25
|
+
|
|
26
|
+
* [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/xunit.runner.schema)
|
|
27
|
+
* Last updated: Fri, Jun 30, 2023, 21:04:06 GMT
|
|
12
28
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface XUnitNetRunnerConfiguration {
|
|
|
21
21
|
* Enables or disables diagnostic information during test discovery and execution.
|
|
22
22
|
*/
|
|
23
23
|
diagnosticMessages?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Enables or disables converting skipped tests into failed tests.
|
|
26
|
+
*/
|
|
27
|
+
failSkips?: boolean;
|
|
24
28
|
/**
|
|
25
29
|
* Enables or disables internal diagnostic information during test discovery and execution.
|
|
26
30
|
*/
|
|
@@ -57,4 +61,8 @@ export interface XUnitNetRunnerConfiguration {
|
|
|
57
61
|
* Enables or disables use of shadow copying when using app domains. Has no effect if app domains are not used.
|
|
58
62
|
*/
|
|
59
63
|
shadowCopy?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* Enable or disable stopping running further tests once a failed test has been recorded.
|
|
66
|
+
*/
|
|
67
|
+
stopOnFail?: boolean;
|
|
60
68
|
}
|
package/package.json
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/xunit.runner.schema",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/xunit.runner.schema",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"
|
|
10
|
+
"typeScriptVersion": "2.2",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
}
|
|
12
|
+
"typesPublisherContentHash": "7fb6a10f9cfaeafc595d4ac11241379da93f35d42c2d252e1b51e048be62588a",
|
|
13
|
+
"version": "0.0.8"
|
|
14
|
+
}
|