├── .gitignore ├── .travis.yml ├── HISTORY.md ├── README.md ├── docs └── images │ └── screenshot.png ├── index.js ├── lib ├── add_after_each.js ├── add_before_each.js ├── asyncable.js ├── group.js └── invoke_test.js ├── package.json ├── test └── tape_test.js └── wrap.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/HISTORY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/docs/images/screenshot.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/index.js -------------------------------------------------------------------------------- /lib/add_after_each.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/lib/add_after_each.js -------------------------------------------------------------------------------- /lib/add_before_each.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/lib/add_before_each.js -------------------------------------------------------------------------------- /lib/asyncable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/lib/asyncable.js -------------------------------------------------------------------------------- /lib/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/lib/group.js -------------------------------------------------------------------------------- /lib/invoke_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/lib/invoke_test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/package.json -------------------------------------------------------------------------------- /test/tape_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/test/tape_test.js -------------------------------------------------------------------------------- /wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/tape-plus/HEAD/wrap.js --------------------------------------------------------------------------------