Skip to content

Commit 252ec8c

Browse files
committed
doc: update coverage section for v0.5.2
1 parent ddf3597 commit 252ec8c

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

README.md

+39-39
Original file line numberDiff line numberDiff line change
@@ -123,64 +123,64 @@ bun test --coverage
123123

124124
## Test status and Coverage
125125

126-
Recent test status (v0.5.1, using nbconvert-shim):
126+
Recent test status (v0.5.2, using nbconvert-shim):
127127

128128
```
129129
bun test v1.1.4 (fbe2fe0c)
130130
131131
::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]
150150
(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]
154154
(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]
158158
(pass) files-to-prompt.ts > should output version string when --version is passed [0.09ms]
159159
(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]
171171
172172
::endgroup::
173173
--------------------|---------|---------|-------------------
174174
File | % Funcs | % Lines | Uncovered Line #s
175175
--------------------|---------|---------|-------------------
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
178178
--------------------|---------|---------|-------------------
179179
180180
39 pass
181181
0 fail
182182
95 expect() calls
183-
Ran 39 tests across 1 files. [303.00ms]
183+
Ran 39 tests across 1 files. [150.00ms]
184184
```
185185

186186
## Compatibility

0 commit comments

Comments
 (0)