├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ ├── node-aught.yml │ ├── node-pretest.yml │ ├── node-tens.yml │ ├── rebase.yml │ └── require-allow-edits.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── bin └── cmd.js ├── example ├── tape.js └── test.js ├── images ├── dnode.gif ├── falafel.gif ├── gutter.gif ├── mocha.gif └── test.gif ├── index.js ├── package.json ├── readme.markdown └── test └── long-message ├── failed.tap ├── index.js └── succeeded.tap /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/node-aught.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.github/workflows/node-aught.yml -------------------------------------------------------------------------------- /.github/workflows/node-pretest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.github/workflows/node-pretest.yml -------------------------------------------------------------------------------- /.github/workflows/node-tens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.github/workflows/node-tens.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/require-allow-edits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.github/workflows/require-allow-edits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/.npmrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/bin/cmd.js -------------------------------------------------------------------------------- /example/tape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/example/tape.js -------------------------------------------------------------------------------- /example/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/example/test.js -------------------------------------------------------------------------------- /images/dnode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/images/dnode.gif -------------------------------------------------------------------------------- /images/falafel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/images/falafel.gif -------------------------------------------------------------------------------- /images/gutter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/images/gutter.gif -------------------------------------------------------------------------------- /images/mocha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/images/mocha.gif -------------------------------------------------------------------------------- /images/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/images/test.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/package.json -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/readme.markdown -------------------------------------------------------------------------------- /test/long-message/failed.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/test/long-message/failed.tap -------------------------------------------------------------------------------- /test/long-message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/test/long-message/index.js -------------------------------------------------------------------------------- /test/long-message/succeeded.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/faucet/HEAD/test/long-message/succeeded.tap --------------------------------------------------------------------------------