@alwaysmeticulous/sdk-bundles-api 2.144.0 → 2.146.1
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.
|
@@ -16,6 +16,16 @@ export interface RunningTestRunExecution extends TestRunExecution {
|
|
|
16
16
|
}
|
|
17
17
|
export interface FinishedTestRunExecution extends TestRunExecution {
|
|
18
18
|
status: "Success" | "Failure";
|
|
19
|
+
coverageInfo?: TestRunCoverageInfo;
|
|
20
|
+
}
|
|
21
|
+
export interface TestRunCoverageInfo {
|
|
22
|
+
totalFilesCovered: number;
|
|
23
|
+
editedFileCoverage?: TestRunEditedCoverage;
|
|
24
|
+
}
|
|
25
|
+
export interface TestRunEditedCoverage {
|
|
26
|
+
hadCoverageData?: boolean;
|
|
27
|
+
executableLinesEdited: number;
|
|
28
|
+
executableLinesEditedAndCovered: number;
|
|
19
29
|
}
|
|
20
30
|
export interface TestRunProgress {
|
|
21
31
|
failedTestCases: number;
|
|
@@ -9,6 +9,7 @@ export interface ReplayAndStoreResultsOptions {
|
|
|
9
9
|
generatedBy: GeneratedBy;
|
|
10
10
|
testRunId: string | null;
|
|
11
11
|
suppressScreenshotDiffLogging: boolean;
|
|
12
|
+
disableAssetCache: boolean;
|
|
12
13
|
apiToken: string | null | undefined;
|
|
13
14
|
commitSha: string | null | undefined;
|
|
14
15
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.146.1",
|
|
4
4
|
"description": "Meticulous common types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"bugs": {
|
|
47
47
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "60543a5f018ae5b6c090bf43340858f502e2dbed"
|
|
50
50
|
}
|