@salesforce/cli-plugins-testkit 3.1.0 → 3.1.1

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/lib/execCmd.d.ts CHANGED
@@ -78,7 +78,8 @@ export declare enum Interaction {
78
78
  SELECT = " ",
79
79
  Yes = "Y\r",
80
80
  No = "N\r",
81
- BACKSPACE = "\b"
81
+ BACKSPACE = "\b",
82
+ ALL = "a"
82
83
  }
83
84
  export declare type InteractiveCommandExecutionResult = {
84
85
  code: number | null;
package/lib/execCmd.js CHANGED
@@ -170,6 +170,7 @@ var Interaction;
170
170
  Interaction["Yes"] = "Y\r";
171
171
  Interaction["No"] = "N\r";
172
172
  Interaction["BACKSPACE"] = "\b";
173
+ Interaction["ALL"] = "a";
173
174
  })(Interaction = exports.Interaction || (exports.Interaction = {}));
174
175
  /**
175
176
  * Execute an interactive command.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli-plugins-testkit",
3
3
  "description": "Provides test utilities to assist Salesforce CLI plug-in authors with writing non-unit tests (NUT).",
4
- "version": "3.1.0",
4
+ "version": "3.1.1",
5
5
  "author": "Salesforce",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "lib/index.js",