@alwaysmeticulous/sdk-bundles-api 2.45.3 → 2.47.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.
|
@@ -12,6 +12,7 @@ export interface ReplayAndStoreResultsOptions {
|
|
|
12
12
|
commitSha: string | null | undefined;
|
|
13
13
|
sessionId: string;
|
|
14
14
|
cookiesFile: string | null | undefined;
|
|
15
|
+
logPossibleNonDeterminism: boolean;
|
|
15
16
|
logLevel: LogLevelNumbers;
|
|
16
17
|
/**
|
|
17
18
|
* Called when the user or runner closes the page or browser window
|
|
@@ -112,6 +113,11 @@ export interface ReplayExecutionOptions {
|
|
|
112
113
|
moveBeforeClick: boolean;
|
|
113
114
|
disableRemoteFonts: boolean;
|
|
114
115
|
noSandbox: boolean;
|
|
116
|
+
/**
|
|
117
|
+
* Despite the naming, logPossibleNonDeterminism does actually change how a replay executes.
|
|
118
|
+
* The purpose is logging, but the implementation of how that logging happens changes the way a replay executes in a substantial way.
|
|
119
|
+
*/
|
|
120
|
+
logPossibleNonDeterminism: boolean;
|
|
115
121
|
maxDurationMs: number | null;
|
|
116
122
|
maxEventCount: number | null;
|
|
117
123
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ScreenshotAssertionsEnabledOptions,
|
|
1
|
+
import { ScreenshotAssertionsEnabledOptions, TestRunEnvironment } from "@alwaysmeticulous/api";
|
|
2
2
|
import { LogLevelNumbers } from "loglevel";
|
|
3
3
|
import { RunningTestRunExecution } from "../bundle-to-sdk/execute-test-run";
|
|
4
4
|
import { ReplayExecutionOptions } from "./execute-replay";
|
|
@@ -36,12 +36,6 @@ export interface ExecuteTestRunOptions {
|
|
|
36
36
|
*/
|
|
37
37
|
rerunTestsNTimes: number;
|
|
38
38
|
githubSummary: boolean;
|
|
39
|
-
/**
|
|
40
|
-
* If provided it will incorportate the cachedTestRunResults in any calls to store
|
|
41
|
-
* test run results in the BE, but won't include the cachedTestRunResults in the returned
|
|
42
|
-
* ExecuteTestRunResult.
|
|
43
|
-
*/
|
|
44
|
-
cachedTestRunResults?: TestCaseResult[];
|
|
45
39
|
/**
|
|
46
40
|
* Captured environment for this run
|
|
47
41
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.47.0",
|
|
4
4
|
"description": "Meticulous common types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"depcheck": "depcheck --ignore-patterns=dist"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@alwaysmeticulous/api": "^2.
|
|
22
|
+
"@alwaysmeticulous/api": "^2.46.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"loglevel": "^1.8.0"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"bugs": {
|
|
47
47
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "43b9ec5e4280fce86eff065f3e3999854427e75f"
|
|
50
50
|
}
|