What do you think is lacking from deno test output? #10143
Replies: 7 comments 8 replies
-
When doing |
Beta Was this translation helpful? Give feedback.
-
Grouping test output ;) Grouping it makes it so much easier to read (for me atleast), to understand the where and what. For example with Deno.test, my test names look like |
Beta Was this translation helpful? Give feedback.
-
Maybe don't cut off assertion output if it's too long? There's been times where a test fails, but the |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
such a small inconvinience, but a new line after each test would be nice That's the only thing for me. |
Beta Was this translation helpful? Give feedback.
-
Minor suggestion. Include the number of test files run in the summary. E.g.
|
Beta Was this translation helpful? Give feedback.
-
@caspervonb It would be great to have more meaningful diffs when comparing objects. Seeing "expected [ Array(3) ] to deeply equal [ Array(3) ]" is not very useful. 😅 |
Beta Was this translation helpful? Give feedback.
-
The output format for
deno test
has more or less just been taken from libtest, which works great for Rust since it has fully qualified names but feels like it is time we allow ourselves to diverge from that.So open ended question here as I'll be poking at all things that is the test runner, what do you feel is lacking in the output format?
Additional prior art examples from various frameworks and other runners like go test would be appreciated as-well.
Beta Was this translation helpful? Give feedback.
All reactions