@alwaysmeticulous/sdk-bundles-api 2.141.1 → 2.142.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.
@@ -26,4 +26,5 @@ export interface TestRunProgress {
26
26
  export interface DetailedTestCaseResult extends TestCaseResult {
27
27
  screenshotDiffDataByBaseReplayId: Record<string, ScreenshotDiffData>;
28
28
  totalNumberOfScreenshots: number;
29
+ totalNumberOfSourceFiles: number;
29
30
  }
@@ -4,7 +4,21 @@ import { RunningTestRunExecution } from "../bundle-to-sdk/execute-test-run";
4
4
  import { ReplayExecutionOptions } from "./execute-replay";
5
5
  export interface ExecuteTestRunOptions {
6
6
  chromeExecutablePath?: string;
7
+ /**
8
+ * Optional. The path to a '.json' file of additional test cases to run, which contains JSON of the format:
9
+ *
10
+ * ```ts
11
+ * {
12
+ * testCases: Array<{ sessionId: string, title?: string, options?: TestCaseReplayOptions }>
13
+ * }
14
+ * ```
15
+ */
7
16
  testsFile: string | null;
17
+ /**
18
+ * If true no automatically selected sessions, sessions manually selected in the UI or sessions from the base
19
+ * test run will be executed. Only sessions from the passed `testsFile` will be executed.
20
+ */
21
+ onlyReplaySessionsInTestsFile?: boolean;
8
22
  executionOptions: ReplayExecutionOptions;
9
23
  screenshottingOptions: ScreenshotAssertionsEnabledOptions;
10
24
  apiToken: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.141.1",
3
+ "version": "2.142.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": "a46d9a7b8b8431c06342baaa344b1eb6fdc1ac53"
49
+ "gitHead": "6298334f696d001060e9401a4fab6653ed6ef778"
50
50
  }