@alwaysmeticulous/replay-orchestrator-launcher
Advanced tools
Comparing version 2.55.0 to 2.56.0
import { ExecuteScheduledTestRunOptions, ExecuteTestRunOptions, ExecuteTestRunResult, ReplayAndStoreResultsOptions, ReplayExecution } from "@alwaysmeticulous/sdk-bundles-api"; | ||
export declare const replayAndStoreResults: (options: Omit<ReplayAndStoreResultsOptions, "logLevel" | "chromeExecutablePath">) => Promise<ReplayExecution>; | ||
export declare const executeScheduledTestRun: (options: Omit<ExecuteScheduledTestRunOptions, "logLevel" | "chromeExecutablePath">) => Promise<ExecuteTestRunResult>; | ||
export declare const executeTestRun: (options: Omit<ExecuteTestRunOptions, "logLevel" | "chromeExecutablePath">) => Promise<ExecuteTestRunResult>; | ||
export declare const ENVIRONMENT_VERSION = 1; | ||
export declare const replayAndStoreResults: (options: Omit<ReplayAndStoreResultsOptions, "logLevel" | "chromeExecutablePath" | "logicalEnvironmentVersion">) => Promise<ReplayExecution>; | ||
export declare const executeScheduledTestRun: (options: Omit<ExecuteScheduledTestRunOptions, "logLevel" | "chromeExecutablePath" | "logicalEnvironmentVersion">) => Promise<ExecuteTestRunResult>; | ||
export declare const executeTestRun: (options: Omit<ExecuteTestRunOptions, "logLevel" | "chromeExecutablePath" | "logicalEnvironmentVersion">) => Promise<ExecuteTestRunResult>; |
@@ -6,3 +6,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.executeTestRun = exports.executeScheduledTestRun = exports.replayAndStoreResults = void 0; | ||
exports.executeTestRun = exports.executeScheduledTestRun = exports.replayAndStoreResults = exports.ENVIRONMENT_VERSION = void 0; | ||
const common_1 = require("@alwaysmeticulous/common"); | ||
@@ -12,2 +12,3 @@ const downloading_helpers_1 = require("@alwaysmeticulous/downloading-helpers"); | ||
const puppeteer_1 = require("puppeteer"); | ||
exports.ENVIRONMENT_VERSION = 1; | ||
const replayAndStoreResults = async (options) => { | ||
@@ -20,2 +21,3 @@ const logger = loglevel_1.default.getLogger(common_1.METICULOUS_LOGGER_NAME); | ||
logLevel: logger.getLevel(), | ||
logicalEnvironmentVersion: exports.ENVIRONMENT_VERSION, | ||
}); | ||
@@ -31,2 +33,3 @@ }; | ||
logLevel: logger.getLevel(), | ||
logicalEnvironmentVersion: exports.ENVIRONMENT_VERSION, | ||
}); | ||
@@ -42,2 +45,3 @@ }; | ||
logLevel: logger.getLevel(), | ||
logicalEnvironmentVersion: exports.ENVIRONMENT_VERSION, | ||
}); | ||
@@ -44,0 +48,0 @@ }; |
{ | ||
"name": "@alwaysmeticulous/replay-orchestrator-launcher", | ||
"version": "2.55.0", | ||
"version": "2.56.0", | ||
"description": "Downloads the replay-orchestrator bundle script and executes it", | ||
@@ -22,5 +22,5 @@ "license": "ISC", | ||
"dependencies": { | ||
"@alwaysmeticulous/common": "^2.55.0", | ||
"@alwaysmeticulous/downloading-helpers": "^2.55.0", | ||
"@alwaysmeticulous/sdk-bundles-api": "^2.53.0", | ||
"@alwaysmeticulous/common": "^2.56.0", | ||
"@alwaysmeticulous/downloading-helpers": "^2.56.0", | ||
"@alwaysmeticulous/sdk-bundles-api": "^2.56.0", | ||
"loglevel": "^1.8.0", | ||
@@ -46,3 +46,3 @@ "puppeteer": "19.11.1" | ||
}, | ||
"gitHead": "581f42c3f02e987216c9a4b44e6e970ffecb548d" | ||
"gitHead": "78222a2650425ced6537f3077ad47199a1fa45c3" | ||
} |
6191
57