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
{{ message }}
This repository has been archived by the owner on May 20, 2024. It is now read-only.
If you run non-tap tools (like dependency-check, jshint, etc) before the tap tests, their output (stderr, maybe stdout too provided that tap-parser does not wait for the header) should not interject tap output. It's esp. ugly with reporters like faucet, that swallow the header:
# TAP version 13
garbled non-tap output here..✓ first test
✓ second test
✓ etc
it should be:
non-tap output here..
✓ first test
✓ second test
✓ etc
The text was updated successfully, but these errors were encountered:
If you run non-tap tools (like
dependency-check
,jshint
, etc) before the tap tests, their output (stderr, maybe stdout too provided that tap-parser does not wait for the header) should not interject tap output. It's esp. ugly with reporters likefaucet
, that swallow the header:it should be:
The text was updated successfully, but these errors were encountered: