-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't output to stdout #5
Comments
An extra option can output the generated HTML to stdout, would that be a good addition? |
My thinking is that should be the default option. Pipeline in, pipeline out. Then have an optional |
@morganrallen so my main motivation for building this was to generate an html report much like http://adamgruber.github.io/mochawesome/ for mocha. You make a good point that since these should be pipeable, it should have a default of behavior as such. |
Another problem with this requirement is that in order to generate the html test report, I am using webpack, in order for webpack to work it must write to disk. @morganrallen should it write to a virtual disk and only dump the contents to the physical disk if the output is wanted as such? |
I've never used webpack so I don't know what the best course with that is. |
I think I found a solution @morganrallen |
When looking at
bin/tap-html
one would think this outputs tostdout
but insteadtap-html.html
is always created. Looking atlib/generate.js:71
it can be seen it is in fact hardcoded to./tap-html.html
.The text was updated successfully, but these errors were encountered: