You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to have tape-run piping its result to tap-mocha-reporter to keep consistency with the rest of the test suite of my project. But it can't make it work whatever I try:
I'm trying to have tape-run piping its result to
tap-mocha-reporter
to keep consistency with the rest of the test suite of my project. But it can't make it work whatever I try:browserify -t [ stringify --extensions [.html .twig] ] test/tests/integration/browser.js | tape-run | tap-mocha-reporter spec
Works but the output lacks the actual/expected report - while it works if I pipe to
faucet
for example.browserify -t [ stringify --extensions [.html .twig] ] test/tests/integration/browser.js | tape-run --render="tap-mocha-reporter spec"
Fails, which is expected I guess.
browserify -t [ stringify --extensions [.html .twig] ] test/tests/integration/browser.js | tape-run --render="tap-spec" | tap-mocha-reporter spec
Works, but tap-mocha-reporter formatting is lost.
Is there a way to handle this?
The text was updated successfully, but these errors were encountered: