File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed
Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change 22
33A testing library that allows you to test input and outputs of your CLI command.
44
5- * Note: This is a work in progress.*
6-
7- ** Terminal Text Parsing Support Checklist**
8- Refer to [ Full List of Ansi Escape Codes] ( https://gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797 ) that need to be handled.
9- - [x] Normal text without ansi escape codes
10- - [x] Colored text
11- - [x] Cursor movement (Basic Support. Not tested)
12- - [x] Erase Line/Screen Clear (Basic Support. Not tested)
13- - [ ] Screen Modes (No Support)
14- - [ ] Private Modes (No Support)
15- - [ ] Multiple Arguments (No Support. Difficult to support this)
16-
17-
5+ * Note: This is WIP but it should be ready enough for most common CLI use-cases I can think of*
186
197## Installation
208
@@ -103,6 +91,19 @@ const defaultOptions = {
10391};
10492```
10593
94+
95+ ## Terminal Text Parsing Support Checklist
96+ Refer to [ Full List of Ansi Escape Codes] ( https://gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797 ) that need to be handled.
97+ - [x] Normal text without ansi escape codes
98+ - [x] Colored text
99+ - [x] Cursor movement (Basic Support. Not tested)
100+ - [x] Erase Line/Screen Clear (Basic Support. Not tested)
101+ - [ ] Screen Modes (No Support)
102+ - [ ] Private Modes (No Support)
103+ - [ ] Multiple Arguments (No Support. Difficult to support this)
104+
105+
106+
106107----
107108
108109Big Shoutout to
You can’t perform that action at this time.
0 commit comments