@mablhq/mabl-cli 2.61.11 → 2.61.14

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.
@@ -10,7 +10,8 @@ const chalk_1 = __importDefault(require("chalk"));
10
10
  const loggingProvider_1 = require("../../../providers/logging/loggingProvider");
11
11
  const create_1 = require("./create");
12
12
  exports.command = 'update <id>';
13
- exports.describe = 'Update a mabl environment';
13
+ exports.describe =
14
+ 'Update a mabl environment. Note: This overwrites all existing environment variables set for the environment.';
14
15
  exports.builder = (yargs) => {
15
16
  (0, create_1.addUpdateEnvCommands)(yargs, false).positional(constants_1.CommandArgId, {
16
17
  describe: 'ID of environment to update',
@@ -7,7 +7,8 @@ const util_1 = require("../../commandUtil/util");
7
7
  const mablApi_1 = require("../../../mablApi");
8
8
  const typesAllFlag = 'all';
9
9
  exports.command = `export <id> [options]`;
10
- exports.describe = 'Export test run images';
10
+ exports.describe =
11
+ 'Export browser test run artifacts. Defaults to screenshots only.';
11
12
  exports.builder = (yargs) => {
12
13
  yargs
13
14
  .positional(constants_1.CommandArgId, {
@@ -8,7 +8,7 @@ const trainingSessions_1 = require("../../../core/trainer/trainingSessions");
8
8
  exports.createTestNameKey = 'test-name';
9
9
  exports.createTestDescriptionKey = 'test-description';
10
10
  exports.command = `create <${constants_1.CommandArgUrl}> <${exports.createTestNameKey}>`;
11
- exports.describe = 'Create a test using the mabl Trainer';
11
+ exports.describe = 'Create a browser test using the mabl Trainer';
12
12
  exports.builder = (yargs) => {
13
13
  yargs
14
14
  .positional(constants_1.CommandArgUrl, {
@@ -5,11 +5,11 @@ const testsUtil_1 = require("../testsUtil");
5
5
  const constants_1 = require("../../constants");
6
6
  const trainingSessions_1 = require("../../../core/trainer/trainingSessions");
7
7
  exports.command = 'edit';
8
- exports.describe = 'Edit a test locally';
8
+ exports.describe = 'Edit a browser test in the Trainer';
9
9
  exports.builder = (yargs) => {
10
10
  yargs
11
- .example('$0 tests edit --id <id>', 'edit test locally by id')
12
- .example('$0 tests edit --run-id <test-run-id>', 'edit a test locally in the context of a test configuration from a cloud run')
11
+ .example('$0 tests edit --id <id>', 'edit test in the Trainer by id')
12
+ .example('$0 tests edit --run-id <test-run-id>', 'edit a browser test in the Trainer in the context of a test configuration from a cloud run')
13
13
  .option(constants_1.CommandArgId, {
14
14
  describe: 'the id of the test to edit',
15
15
  type: 'string',
@@ -12,7 +12,7 @@ const chalk = require('chalk');
12
12
  const os = require('os');
13
13
  const JSON_REPLACER = null;
14
14
  exports.command = `export <${constants_1.CommandArgId}>`;
15
- exports.describe = 'Export a mabl test in a specified file format';
15
+ exports.describe = 'Export a mabl browser test in a specified file format';
16
16
  exports.builder = (yargs) => {
17
17
  yargs
18
18
  .positional(constants_1.CommandArgId, {