@alwaysmeticulous/replay-orchestrator-launcher 2.65.0 → 2.67.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.
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ExecuteScheduledTestRunOptions, ExecuteTestRunOptions, ExecuteTestRunResult, ReplayAndStoreResultsOptions, ReplayExecution } from "@alwaysmeticulous/sdk-bundles-api";
1
+ import { ExecuteScheduledTestRunOptions, ExecuteTestRunOptions, ExecuteTestRunResult, InProgressTestRun, ReplayAndStoreResultsOptions, ReplayExecution } from "@alwaysmeticulous/sdk-bundles-api";
2
2
  export declare const replayAndStoreResults: (options: Omit<ReplayAndStoreResultsOptions, "logLevel" | "chromeExecutablePath">) => Promise<ReplayExecution>;
3
- export declare const executeScheduledTestRun: (options: Omit<ExecuteScheduledTestRunOptions, "logLevel" | "chromeExecutablePath">) => Promise<ExecuteTestRunResult>;
3
+ export declare const executeScheduledTestRun: (options: Omit<ExecuteScheduledTestRunOptions, "logLevel" | "chromeExecutablePath">) => Promise<InProgressTestRun>;
4
4
  export declare const executeTestRun: (options: Omit<ExecuteTestRunOptions, "logLevel" | "chromeExecutablePath">) => Promise<ExecuteTestRunResult>;
package/dist/index.js CHANGED
@@ -21,7 +21,7 @@ exports.replayAndStoreResults = replayAndStoreResults;
21
21
  const executeScheduledTestRun = async (options) => {
22
22
  const logger = loglevel_1.default.getLogger(common_1.METICULOUS_LOGGER_NAME);
23
23
  const bundleLocation = await (0, downloading_helpers_1.fetchAsset)("replay/v3/execute-scheduled-test-run.bundle.js");
24
- return (await require(bundleLocation)).executeTestRun({
24
+ return (await require(bundleLocation)).executeTestRunV2({
25
25
  ...options,
26
26
  chromeExecutablePath: getChromiumExecutablePath(),
27
27
  logLevel: logger.getLevel(),
@@ -46,3 +46,4 @@ const getChromiumExecutablePath = () => {
46
46
  // may have a slightly different default Chromium path/version.
47
47
  return (0, puppeteer_1.executablePath)();
48
48
  };
49
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,qDAAkE;AAClE,+EAAmE;AASnE,wDAA2B;AAC3B,yCAA2C;AAEpC,MAAM,qBAAqB,GAAG,KAAK,EACxC,OAGC,EACyB,EAAE;IAC5B,MAAM,MAAM,GAAG,kBAAG,CAAC,SAAS,CAAC,+BAAsB,CAAC,CAAC;IACrD,MAAM,cAAc,GAAG,MAAM,IAAA,gCAAU,EACrC,8CAA8C,CAC/C,CAAC;IAEF,OAAO,CAAC,MAAM,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,qBAAqB,CAAC;QAC3D,GAAG,OAAO;QACV,oBAAoB,EAAE,yBAAyB,EAAE;QACjD,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE;KAC5B,CAAC,CAAC;AACL,CAAC,CAAC;AAhBW,QAAA,qBAAqB,yBAgBhC;AAEK,MAAM,uBAAuB,GAAG,KAAK,EAC1C,OAGC,EAC2B,EAAE;IAC9B,MAAM,MAAM,GAAG,kBAAG,CAAC,SAAS,CAAC,+BAAsB,CAAC,CAAC;IACrD,MAAM,cAAc,GAAG,MAAM,IAAA,gCAAU,EACrC,gDAAgD,CACjD,CAAC;IAEF,OAAO,CAAC,MAAM,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,gBAAgB,CAAC;QACtD,GAAG,OAAO;QACV,oBAAoB,EAAE,yBAAyB,EAAE;QACjD,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE;KAC5B,CAAC,CAAC;AACL,CAAC,CAAC;AAhBW,QAAA,uBAAuB,2BAgBlC;AAEK,MAAM,cAAc,GAAG,KAAK,EACjC,OAAyE,EAC1C,EAAE;IACjC,MAAM,MAAM,GAAG,kBAAG,CAAC,SAAS,CAAC,+BAAsB,CAAC,CAAC;IACrD,MAAM,cAAc,GAAG,MAAM,IAAA,gCAAU,EACrC,sCAAsC,CACvC,CAAC;IAEF,OAAO,CAAC,MAAM,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC;QACpD,GAAG,OAAO;QACV,oBAAoB,EAAE,yBAAyB,EAAE;QACjD,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE;KAC5B,CAAC,CAAC;AACL,CAAC,CAAC;AAbW,QAAA,cAAc,kBAazB;AAEF,MAAM,yBAAyB,GAAG,GAAG,EAAE;IACrC,yEAAyE;IACzE,mFAAmF;IACnF,iFAAiF;IACjF,6EAA6E;IAC7E,+DAA+D;IAC/D,OAAO,IAAA,0BAAc,GAAE,CAAC;AAC1B,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/replay-orchestrator-launcher",
3
- "version": "2.65.0",
3
+ "version": "2.67.0",
4
4
  "description": "Downloads the replay-orchestrator bundle script and executes it",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -19,9 +19,9 @@
19
19
  "depcheck": "depcheck --ignore-patterns=dist"
20
20
  },
21
21
  "dependencies": {
22
- "@alwaysmeticulous/common": "^2.64.0",
23
- "@alwaysmeticulous/downloading-helpers": "^2.65.0",
24
- "@alwaysmeticulous/sdk-bundles-api": "^2.63.0",
22
+ "@alwaysmeticulous/common": "^2.67.0",
23
+ "@alwaysmeticulous/downloading-helpers": "^2.67.0",
24
+ "@alwaysmeticulous/sdk-bundles-api": "^2.67.0",
25
25
  "loglevel": "^1.8.0",
26
26
  "puppeteer": "19.11.1"
27
27
  },
@@ -42,5 +42,5 @@
42
42
  "bugs": {
43
43
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
44
44
  },
45
- "gitHead": "2dc5cb5f92df04a2f80abf6950bb5ffadb57b2cd"
45
+ "gitHead": "8653b5d179014abff2f181f6361d8229d3a3ec5e"
46
46
  }