expresso icon indicating copy to clipboard operation
expresso copied to clipboard

cannot redirect output expresso with coverage

Open nalply opened this issue 13 years ago • 0 comments

$ expresso
... coverage output ...

but if I want to redirect the coverage report to coverage.txt, the file contains only the usual expresso report that all tests worked fine:

$ expresso > coverage.txt 2>&1
$ cat coverage.txt

100% 11 tests

Consider for example:

$ node -v; node -e 'process.stdout.write("test\n")' > out; cat out
v0.5.10
test

nalply avatar Oct 28 '11 11:10 nalply