@supatest/cypress-reporter 0.0.6 → 0.0.7
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/dist/index.cjs +930 -518
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +930 -518
- package/dist/index.js.map +1 -1
- package/package.json +13 -15
package/dist/index.d.cts
CHANGED
|
@@ -18,12 +18,18 @@ type BaseReporterOptions = {
|
|
|
18
18
|
projectId: string;
|
|
19
19
|
apiKey: string;
|
|
20
20
|
apiUrl?: string;
|
|
21
|
+
runGroupId?: string;
|
|
22
|
+
shard?: ShardInfo;
|
|
21
23
|
uploadAssets?: boolean;
|
|
22
24
|
maxConcurrentUploads?: number;
|
|
23
25
|
retryAttempts?: number;
|
|
24
26
|
timeoutMs?: number;
|
|
25
27
|
dryRun?: boolean;
|
|
26
28
|
};
|
|
29
|
+
type ShardInfo = {
|
|
30
|
+
current: number;
|
|
31
|
+
total: number;
|
|
32
|
+
};
|
|
27
33
|
|
|
28
34
|
declare class ErrorCollector {
|
|
29
35
|
private errors;
|
|
@@ -132,6 +138,8 @@ type SupatestCypressOptions = {
|
|
|
132
138
|
projectId?: string;
|
|
133
139
|
apiKey?: string;
|
|
134
140
|
apiUrl?: string;
|
|
141
|
+
runGroupId?: string;
|
|
142
|
+
shard?: ShardInfo;
|
|
135
143
|
uploadAssets?: boolean;
|
|
136
144
|
maxConcurrentUploads?: number;
|
|
137
145
|
retryAttempts?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -18,12 +18,18 @@ type BaseReporterOptions = {
|
|
|
18
18
|
projectId: string;
|
|
19
19
|
apiKey: string;
|
|
20
20
|
apiUrl?: string;
|
|
21
|
+
runGroupId?: string;
|
|
22
|
+
shard?: ShardInfo;
|
|
21
23
|
uploadAssets?: boolean;
|
|
22
24
|
maxConcurrentUploads?: number;
|
|
23
25
|
retryAttempts?: number;
|
|
24
26
|
timeoutMs?: number;
|
|
25
27
|
dryRun?: boolean;
|
|
26
28
|
};
|
|
29
|
+
type ShardInfo = {
|
|
30
|
+
current: number;
|
|
31
|
+
total: number;
|
|
32
|
+
};
|
|
27
33
|
|
|
28
34
|
declare class ErrorCollector {
|
|
29
35
|
private errors;
|
|
@@ -132,6 +138,8 @@ type SupatestCypressOptions = {
|
|
|
132
138
|
projectId?: string;
|
|
133
139
|
apiKey?: string;
|
|
134
140
|
apiUrl?: string;
|
|
141
|
+
runGroupId?: string;
|
|
142
|
+
shard?: ShardInfo;
|
|
135
143
|
uploadAssets?: boolean;
|
|
136
144
|
maxConcurrentUploads?: number;
|
|
137
145
|
retryAttempts?: number;
|