File tree 1 file changed +14
-13
lines changed
1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change 2
2
3
3
A testing library that allows you to test input and outputs of your CLI command.
4
4
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*
18
6
19
7
## Installation
20
8
@@ -103,6 +91,19 @@ const defaultOptions = {
103
91
};
104
92
```
105
93
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
+
106
107
----
107
108
108
109
Big Shoutout to
You can’t perform that action at this time.
0 commit comments