@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.
Files changed (3) hide show
  1. package/README.md +22 -6
  2. package/index.d.ts +8 -0
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -1,12 +1,28 @@
1
- # Installation
2
- > `npm install --save @schemastore/xunit.runner.schema`
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
- ## Details
8
- Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/xunit.runner.schema.
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
- * Last updated: Fri, Feb 24, 2023, 11:23:42 GMT
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
- "typesPublisherContentHash": "141b6d6985d0a6166d57642e751abe9f1c74cc811a984a46d43c9765d933ab11",
10
+ "typeScriptVersion": "2.2",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.7",
13
- "typeScriptVersion": "2.2"
14
- }
12
+ "typesPublisherContentHash": "7fb6a10f9cfaeafc595d4ac11241379da93f35d42c2d252e1b51e048be62588a",
13
+ "version": "0.0.8"
14
+ }