├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── license ├── media └── logo.png ├── package.json ├── readme.md ├── scripts └── check.js ├── source └── index.ts ├── test ├── fixtures │ ├── fail-without-error.js │ ├── fail.js │ ├── mixed.js │ ├── pass-fail.js │ ├── pass-with-multiple-comments.js │ ├── pass-with-single-comment.js │ ├── pass.js │ ├── skip.js │ └── todo.js ├── snapshots │ ├── test.js.md │ └── test.js.snap └── test.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | dist 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/license -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/media/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/scripts/check.js -------------------------------------------------------------------------------- /source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/source/index.ts -------------------------------------------------------------------------------- /test/fixtures/fail-without-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/fail-without-error.js -------------------------------------------------------------------------------- /test/fixtures/fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/fail.js -------------------------------------------------------------------------------- /test/fixtures/mixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/mixed.js -------------------------------------------------------------------------------- /test/fixtures/pass-fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/pass-fail.js -------------------------------------------------------------------------------- /test/fixtures/pass-with-multiple-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/pass-with-multiple-comments.js -------------------------------------------------------------------------------- /test/fixtures/pass-with-single-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/pass-with-single-comment.js -------------------------------------------------------------------------------- /test/fixtures/pass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/pass.js -------------------------------------------------------------------------------- /test/fixtures/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/skip.js -------------------------------------------------------------------------------- /test/fixtures/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/fixtures/todo.js -------------------------------------------------------------------------------- /test/snapshots/test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/snapshots/test.js.md -------------------------------------------------------------------------------- /test/snapshots/test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/snapshots/test.js.snap -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadimdemedes/supertap/HEAD/tsconfig.json --------------------------------------------------------------------------------