@alwaysmeticulous/sdk-bundles-api 2.124.0 → 2.125.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.
|
@@ -157,6 +157,11 @@ export interface ReplayExecutionOptions {
|
|
|
157
157
|
* to ensure that we don't compare screenshots that were generated from replays with different project settings.
|
|
158
158
|
*/
|
|
159
159
|
projectSettingsHash?: string;
|
|
160
|
+
delayLayoutTriggeredEvents?: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* If true deletes window.Worker (pretends the browser doesn't support web workers).
|
|
163
|
+
*/
|
|
164
|
+
disableWebWorkers?: boolean;
|
|
160
165
|
}
|
|
161
166
|
export interface VercelExecutionSettings {
|
|
162
167
|
/**
|
|
@@ -5,7 +5,9 @@ export type ExecuteScheduledTestRunOptions = Pick<ExecuteTestRunOptions, "chrome
|
|
|
5
5
|
*/
|
|
6
6
|
testRunId: string;
|
|
7
7
|
/**
|
|
8
|
-
* If true then the test run will be restarted even if it's already completed or in the process of running.
|
|
8
|
+
* If true then the test run will be restarted even if it's already completed or in the process of running, without logging a warning.
|
|
9
|
+
*
|
|
10
|
+
* If false then the test run will be restarted even if it's already completed or in the process of running, but a warning will be logged.
|
|
9
11
|
*
|
|
10
12
|
* Existing test run results will be deleted and overwritten.
|
|
11
13
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.125.0",
|
|
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": "f0649c0696c3ae48878b4a166dc9ef3a9e074348"
|
|
50
50
|
}
|