@alwaysmeticulous/cli 2.4.0 → 2.5.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/api/client.js +2 -2
- package/dist/api/download.js +1 -1
- package/dist/api/replay.api.d.ts +1 -1
- package/dist/api/upload.js +1 -1
- package/dist/archive/archive.js +2 -2
- package/dist/command-utils/common-options.d.ts +2 -2
- package/dist/command-utils/common-options.js +3 -3
- package/dist/commands/create-test/create-test.command.js +14 -13
- package/dist/commands/record/record.command.d.ts +9 -9
- package/dist/commands/record/record.command.js +2 -3
- package/dist/commands/replay/replay.command.d.ts +13 -10
- package/dist/commands/replay/replay.command.js +24 -13
- package/dist/commands/run-all-tests/run-all-tests.command.js +12 -12
- package/dist/commands/screenshot-diff/screenshot-diff.command.js +1 -1
- package/dist/commands/upload-build/upload-build.command.js +2 -2
- package/dist/config/config.js +2 -2
- package/dist/deflake-tests/deflake-tests.handler.d.ts +1 -1
- package/dist/deflake-tests/deflake-tests.handler.js +2 -1
- package/dist/local-data/replay-assets.js +2 -2
- package/dist/local-data/replays.js +8 -9
- package/dist/local-data/screenshot-diffs.js +1 -1
- package/dist/local-data/serve-assets-from-simulation.js +5 -4
- package/dist/local-data/sessions.js +2 -2
- package/dist/parallel-tests/parallel-tests.handler.d.ts +3 -3
- package/dist/parallel-tests/parallel-tests.handler.js +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/api-token.utils.d.ts +1 -1
- package/dist/utils/api-token.utils.js +3 -3
- package/dist/utils/commit-sha.utils.js +1 -1
- package/dist/utils/config.utils.d.ts +1 -1
- package/dist/utils/github-summary.utils.js +2 -2
- package/package.json +3 -3
- package/dist/command-utils/command-utils.d.ts +0 -9
- package/dist/command-utils/command-utils.js +0 -18
|
@@ -9,11 +9,11 @@ export interface RunAllTestsInParallelOptions {
|
|
|
9
9
|
testRun: TestRun;
|
|
10
10
|
executionOptions: ReplayExecutionOptions;
|
|
11
11
|
screenshottingOptions: ScreenshotAssertionsEnabledOptions;
|
|
12
|
-
apiToken: string |
|
|
12
|
+
apiToken: string | null;
|
|
13
13
|
commitSha: string;
|
|
14
|
-
appUrl: string |
|
|
14
|
+
appUrl: string | null;
|
|
15
15
|
useAssetsSnapshottedInBaseSimulation: boolean;
|
|
16
|
-
parallelTasks: number |
|
|
16
|
+
parallelTasks: number | null;
|
|
17
17
|
deflake: boolean;
|
|
18
18
|
cachedTestRunResults: TestCaseResult[];
|
|
19
19
|
}
|
|
@@ -4,11 +4,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.runAllTestsInParallel = void 0;
|
|
7
|
-
const common_1 = require("@alwaysmeticulous/common");
|
|
8
7
|
const child_process_1 = require("child_process");
|
|
9
|
-
const loglevel_1 = __importDefault(require("loglevel"));
|
|
10
8
|
const os_1 = require("os");
|
|
11
9
|
const path_1 = require("path");
|
|
10
|
+
const common_1 = require("@alwaysmeticulous/common");
|
|
11
|
+
const loglevel_1 = __importDefault(require("loglevel"));
|
|
12
12
|
const test_run_api_1 = require("../api/test-run.api");
|
|
13
13
|
const config_utils_1 = require("../utils/config.utils");
|
|
14
14
|
const run_all_tests_utils_1 = require("../utils/run-all-tests.utils");
|