@@ -123,64 +123,64 @@ bun test --coverage
123
123
124
124
## Test status and Coverage
125
125
126
- Recent test status (v0.5.1 , using nbconvert-shim):
126
+ Recent test status (v0.5.2 , using nbconvert-shim):
127
127
128
128
```
129
129
bun test v1.1.4 (fbe2fe0c)
130
130
131
131
::group::files-to-prompt.test.ts:
132
- (pass) files-to-prompt.ts > should include single file passed on the command line [10.93ms ]
133
- (pass) files-to-prompt.ts > should include multiple files passed on the command line [6.25ms ]
134
- (pass) files-to-prompt.ts > should include files in directories passed on the command line [7.14ms ]
135
- (pass) files-to-prompt.ts > should include files a few levels deep in a directory structure [5.87ms ]
136
- (pass) files-to-prompt.ts > should exclude files matching patterns passed via --ignore [6.90ms ]
137
- (pass) files-to-prompt.ts > should exclude files matching patterns passed via multiple --ignore [5.87ms ]
138
- (pass) files-to-prompt.ts > should fail when --ignore gets passed without an argument [5.39ms ]
139
- (pass) files-to-prompt.ts > should exclude files matching patterns in .gitignore [6.09ms ]
140
- (pass) files-to-prompt.ts > should exclude directory matching patterns in .gitignore [6.81ms ]
141
- (pass) files-to-prompt.ts > should exclude directory matching patterns in .gitignore in different directories [5.70ms ]
142
- (pass) files-to-prompt.ts > should include hidden files and directories when --include-hidden is passed [7.19ms ]
143
- (pass) files-to-prompt.ts > should ignore .gitignore files when --ignore-gitignore is passed [6.03ms ]
144
- (pass) files-to-prompt.ts > should skip binary files [6.65ms ]
145
- (pass) files-to-prompt.ts > should fail silently if isBinaryFile() gets called with invalid path [1.04ms ]
146
- (pass) files-to-prompt.ts > should skip FIFOs [9.48ms ]
147
- (pass) files-to-prompt.ts > should fail with error message if path does not exist [5.20ms ]
148
- (pass) files-to-prompt.ts > should parse file paths with parseFilePathsFromStdin() correctly [1.04ms ]
149
- (pass) files-to-prompt.ts > should de-duplicate file paths with parseFilePathsFromStdin() [0.11ms ]
132
+ (pass) files-to-prompt.ts > should include single file passed on the command line [5.28ms ]
133
+ (pass) files-to-prompt.ts > should include multiple files passed on the command line [1.10ms ]
134
+ (pass) files-to-prompt.ts > should include files in directories passed on the command line [0.76ms ]
135
+ (pass) files-to-prompt.ts > should include files a few levels deep in a directory structure [0.73ms ]
136
+ (pass) files-to-prompt.ts > should exclude files matching patterns passed via --ignore [0.73ms ]
137
+ (pass) files-to-prompt.ts > should exclude files matching patterns passed via multiple --ignore [0.63ms ]
138
+ (pass) files-to-prompt.ts > should fail when --ignore gets passed without an argument [0.38ms ]
139
+ (pass) files-to-prompt.ts > should exclude files matching patterns in .gitignore [0.70ms ]
140
+ (pass) files-to-prompt.ts > should exclude directory matching patterns in .gitignore [0.83ms ]
141
+ (pass) files-to-prompt.ts > should exclude directory matching patterns in .gitignore in different directories [0.55ms ]
142
+ (pass) files-to-prompt.ts > should include hidden files and directories when --include-hidden is passed [0.89ms ]
143
+ (pass) files-to-prompt.ts > should ignore .gitignore files when --ignore-gitignore is passed [0.75ms ]
144
+ (pass) files-to-prompt.ts > should skip binary files [1.07ms ]
145
+ (pass) files-to-prompt.ts > should fail silently if isBinaryFile() gets called with invalid path [0.15ms ]
146
+ (pass) files-to-prompt.ts > should skip FIFOs [3.97ms ]
147
+ (pass) files-to-prompt.ts > should fail with error message if path does not exist [0.09ms ]
148
+ (pass) files-to-prompt.ts > should parse file paths with parseFilePathsFromStdin() correctly [0.22ms ]
149
+ (pass) files-to-prompt.ts > should de-duplicate file paths with parseFilePathsFromStdin() [0.07ms ]
150
150
(pass) files-to-prompt.ts > should parse file paths with one file path per line [0.09ms]
151
- (pass) files-to-prompt.ts > should handle mixed input formats [0.08ms ]
152
- (pass) files-to-prompt.ts > should handle empty lines in stdin data [0.05ms ]
153
- (pass) files-to-prompt.ts > should handle binary data in stdin [0.10ms ]
151
+ (pass) files-to-prompt.ts > should handle mixed input formats [0.06ms ]
152
+ (pass) files-to-prompt.ts > should handle empty lines in stdin data [0.04ms ]
153
+ (pass) files-to-prompt.ts > should handle binary data in stdin [0.08ms ]
154
154
(pass) files-to-prompt.ts > should handle common text/code files in stdin [0.06ms]
155
- (pass) files-to-prompt.ts > should handle long file paths in stdin [0.32ms ]
156
- (pass) files-to-prompt.ts > should ignore file paths with the null character [0.08ms ]
157
- (pass) files-to-prompt.ts > should ignore file paths with control characters [0.09ms ]
155
+ (pass) files-to-prompt.ts > should handle long file paths in stdin [0.29ms ]
156
+ (pass) files-to-prompt.ts > should ignore file paths with the null character [0.06ms ]
157
+ (pass) files-to-prompt.ts > should ignore file paths with control characters [0.07ms ]
158
158
(pass) files-to-prompt.ts > should output version string when --version is passed [0.09ms]
159
159
(pass) files-to-prompt.ts > should output error for unsupported options [0.07ms]
160
- (pass) files-to-prompt.ts > should output to a file when --output is passed [5.86ms ]
161
- (pass) files-to-prompt.ts > should output to a file when -o is passed [5.79ms ]
162
- (pass) files-to-prompt.ts > should output error if --output is passed without a file path [6.03ms ]
163
- (pass) files-to-prompt.ts > should output error if -o is passed without a file path [5.32ms ]
164
- (pass) files-to-prompt.ts > should output error if output file cannot be written [5.86ms ]
165
- (pass) files-to-prompt.ts > should include .ipynb files verbatim whitout --nbconvert [6.17ms ]
166
- (pass) files-to-prompt.ts > should include .ipynb files verbatim when --nbconvert is set to invalid command [7.95ms ]
167
- (pass) files-to-prompt.ts > should convert .ipynb files to ASCII when --nbconvert --format asciidoc is passed [55.93ms ]
168
- (pass) files-to-prompt.ts > should convert .ipynb files to Markdown when --nbconvert --format markdown is passed [55.10ms ]
169
- (pass) files-to-prompt.ts > should convert .ipynb files to ASCII when --nbconvert --format asciidoc is passed using internal converter [5.80ms ]
170
- (pass) files-to-prompt.ts > should convert .ipynb files to Markdown when --nbconvert --format markdown is passed using internal converter [5.62ms ]
160
+ (pass) files-to-prompt.ts > should output to a file when --output is passed [1.46ms ]
161
+ (pass) files-to-prompt.ts > should output to a file when -o is passed [0.73ms ]
162
+ (pass) files-to-prompt.ts > should output error if --output is passed without a file path [0.16ms ]
163
+ (pass) files-to-prompt.ts > should output error if -o is passed without a file path [0.14ms ]
164
+ (pass) files-to-prompt.ts > should output error if output file cannot be written [0.24ms ]
165
+ (pass) files-to-prompt.ts > should include .ipynb files verbatim whitout --nbconvert [0.64ms ]
166
+ (pass) files-to-prompt.ts > should include .ipynb files verbatim when --nbconvert is set to invalid command [1.45ms ]
167
+ (pass) files-to-prompt.ts > should convert .ipynb files to ASCII when --nbconvert --format asciidoc is passed [46.95ms ]
168
+ (pass) files-to-prompt.ts > should convert .ipynb files to Markdown when --nbconvert --format markdown is passed [46.59ms ]
169
+ (pass) files-to-prompt.ts > should convert .ipynb files to ASCII when --nbconvert --format asciidoc is passed using internal converter [0.60ms ]
170
+ (pass) files-to-prompt.ts > should convert .ipynb files to Markdown when --nbconvert --format markdown is passed using internal converter [0.85ms ]
171
171
172
172
::endgroup::
173
173
--------------------|---------|---------|-------------------
174
174
File | % Funcs | % Lines | Uncovered Line #s
175
175
--------------------|---------|---------|-------------------
176
- All files | 91.18 | 85.84 |
177
- files-to-prompt.ts | 91.18 | 85.84 | 69,82,97,108-111,137,187,220,239-241,248- 249,271-273,279-280,307- 308,324,449-460,573- 574,591-592,595- 596,640-642,660-663,665-666
176
+ All files | 83.33 | 85.25 |
177
+ files-to-prompt.ts | 83.33 | 85.25 | 69,82,97,108-111,137,187,221,240-242, 249-250,272-274,280-281, 308-309,325,450-461, 574-575,592-593, 596-597,665-668,670-672,686-689,691-692
178
178
--------------------|---------|---------|-------------------
179
179
180
180
39 pass
181
181
0 fail
182
182
95 expect() calls
183
- Ran 39 tests across 1 files. [303 .00ms]
183
+ Ran 39 tests across 1 files. [150 .00ms]
184
184
```
185
185
186
186
## Compatibility
0 commit comments