@inquirer/testing 2.1.24 → 2.1.25

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.
Files changed (2) hide show
  1. package/README.md +19 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,12 +4,29 @@ The `@inquirer/testing` package is Inquirer's answer to testing prompts [built w
4
4
 
5
5
  # Installation
6
6
 
7
+ <table>
8
+ <tr>
9
+ <th>npm</th>
10
+ <th>yarn</th>
11
+ </tr>
12
+ <tr>
13
+ <td>
14
+
7
15
  ```sh
8
- npm install @inquirer/testing
16
+ npm install @inquirer/testing --save-dev
17
+ ```
18
+
19
+ </td>
20
+ <td>
9
21
 
10
- yarn add @inquirer/testing
22
+ ```sh
23
+ yarn add @inquirer/testing --dev
11
24
  ```
12
25
 
26
+ </td>
27
+ </tr>
28
+ </table>
29
+
13
30
  # Example
14
31
 
15
32
  Here's an example of a test running with Jest (though `@inquirer/testing` will work with any runners).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inquirer/testing",
3
- "version": "2.1.24",
3
+ "version": "2.1.25",
4
4
  "engines": {
5
5
  "node": ">=18"
6
6
  },
@@ -87,5 +87,5 @@
87
87
  }
88
88
  },
89
89
  "sideEffects": false,
90
- "gitHead": "fc27d575bceb96466cb8da8524c26d4eb2a77df0"
90
+ "gitHead": "2285f2c043448ff4317635cf6481df7ffda2d3bd"
91
91
  }