@qualflare/cucumberjs 0.2.0 → 0.3.0
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 +9 -3
- package/dist/formatter/index.cjs +22 -7
- package/dist/formatter/index.cjs.map +1 -1
- package/dist/formatter/index.js +22 -7
- package/dist/formatter/index.js.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -34,6 +34,14 @@ interface Metadata {
|
|
|
34
34
|
version: string;
|
|
35
35
|
timestamp: string;
|
|
36
36
|
cliName: string;
|
|
37
|
+
/** Identifier every shard of ONE run shares. `qualflare-cli collect` groups
|
|
38
|
+
* the report files in a directory by this and refuses to upload when more
|
|
39
|
+
* than one distinct run is present, so a file left over from an earlier run
|
|
40
|
+
* cannot be merged silently into this launch.
|
|
41
|
+
*
|
|
42
|
+
* Optional because reports written by earlier releases have none; the CLI
|
|
43
|
+
* treats those as "unknown run" and never blocks on them. */
|
|
44
|
+
runId?: string;
|
|
37
45
|
}
|
|
38
46
|
interface Label {
|
|
39
47
|
/** Required, max 128 chars. Allure-style arbitrary label name — epic/feature/story/owner/severity
|
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,14 @@ interface Metadata {
|
|
|
34
34
|
version: string;
|
|
35
35
|
timestamp: string;
|
|
36
36
|
cliName: string;
|
|
37
|
+
/** Identifier every shard of ONE run shares. `qualflare-cli collect` groups
|
|
38
|
+
* the report files in a directory by this and refuses to upload when more
|
|
39
|
+
* than one distinct run is present, so a file left over from an earlier run
|
|
40
|
+
* cannot be merged silently into this launch.
|
|
41
|
+
*
|
|
42
|
+
* Optional because reports written by earlier releases have none; the CLI
|
|
43
|
+
* treats those as "unknown run" and never blocks on them. */
|
|
44
|
+
runId?: string;
|
|
37
45
|
}
|
|
38
46
|
interface Label {
|
|
39
47
|
/** Required, max 128 chars. Allure-style arbitrary label name — epic/feature/story/owner/severity
|