├── .editorconfig ├── .eslintrc ├── .github ├── FUNDING.yml ├── SECURITY.md └── workflows │ ├── node-aught.yml │ ├── node-pretest.yml │ ├── node-tens.yml │ ├── node-twenties.yml │ ├── rebase.yml │ └── require-allow-edits.yml ├── .gitignore ├── .npmrc ├── .nycrc ├── CHANGELOG.md ├── LICENSE ├── bin ├── import-or-require.js └── tape ├── example ├── array.js ├── fail.js ├── nested.js ├── nested_fail.js ├── no_callback.js ├── not_enough_fail.js ├── static │ ├── build.sh │ ├── index.html │ └── server.js ├── stream │ ├── object.js │ ├── tap.js │ └── test │ │ ├── x_fail.js │ │ └── y.js ├── throw_fail.js ├── timing.js ├── too_many_fail.js └── two.js ├── index.js ├── lib ├── default_stream.js ├── isObject.js ├── results.js └── test.js ├── package.json ├── readme.markdown └── test ├── add-subtest-async.js ├── anonymous-fn.js ├── anonymous-fn └── test-wrapper.js ├── array.js ├── assertion.js ├── async-await.js ├── async-await ├── async-bug.js ├── async-error.js ├── async1.js ├── async2.js ├── async3.js ├── async4.js ├── async5.js └── sync-error.js ├── bound.js ├── browser └── asserts.js ├── capture.js ├── captureFn.js ├── child_ordering.js ├── circular-things.js ├── comment.js ├── common.js ├── create_multiple_streams.js ├── deep-equal-failure.js ├── deep.js ├── default-messages.js ├── default_stream.js ├── double_end.js ├── double_end └── double.js ├── edge-cases.js ├── end-as-callback.js ├── error.js ├── exit.js ├── exit ├── fail.js ├── missing_end.js ├── ok.js ├── second.js ├── todo.js ├── todo_fail.js └── too_few.js ├── exposed-harness.js ├── fail.js ├── has spaces.js ├── ignore-pattern.js ├── ignore-pattern ├── .ignore ├── fake_node_modules │ ├── stub1.js │ └── stub2.js ├── fake_other_ignored_dir │ ├── stub1.js │ └── stub2.js ├── test.js ├── test │ ├── stub1.js │ ├── stub2.js │ └── sub │ │ ├── sub.stub1.js │ │ └── sub.stub2.js └── test2.js ├── ignore ├── .ignore ├── fake_node_modules │ ├── stub1.js │ └── stub2.js ├── test.js ├── test │ ├── stub1.js │ ├── stub2.js │ └── sub │ │ ├── sub.stub1.js │ │ └── sub.stub2.js └── test2.js ├── ignore_from_gitignore.js ├── import.js ├── import ├── mjs-a.mjs ├── mjs-b.mjs ├── mjs-c.mjs ├── mjs-d.mjs ├── mjs-e.mjs ├── mjs-f.mjs ├── mjs-g.mjs ├── mjs-h.mjs ├── package_type │ ├── package-a.js │ ├── package-b.js │ ├── package-c.js │ └── package.json ├── syntax-error.cjs ├── syntax-error.mjs ├── throws.cjs └── throws.mjs ├── intercept.js ├── many.js ├── match.js ├── max_listeners.js ├── max_listeners └── source.js ├── messages └── defaults.js ├── nested-async-plan-noend.js ├── nested-sync-noplan-noend.js ├── nested.js ├── nested2.js ├── no_callback.js ├── no_only.js ├── no_only ├── test-a.js └── test-b.js ├── not-deep-equal-failure.js ├── not-equal-failure.js ├── numerics.js ├── objectMode.js ├── objectModeWithComment.js ├── onFailure.js ├── onFinish.js ├── only-twice.js ├── only.js ├── only2.js ├── only3.js ├── only4.js ├── only5.js ├── order.js ├── plan_optional.js ├── promise_fail.js ├── promises ├── fail.js └── subTests.js ├── require.js ├── require ├── a.js ├── b.js ├── test-a.js └── test-b.js ├── skip.js ├── skip_explanation.js ├── stackTrace.js ├── stack_trace ├── cjs.js └── esm.mjs ├── strict.js ├── subcount.js ├── subtest_and_async.js ├── subtest_plan.js ├── teardown.js ├── throws.js ├── timeout.js ├── timeoutAfter.js ├── todo.js ├── todo_explanation.js ├── todo_single.js ├── too_many.js ├── undef.js └── wait.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/node-aught.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.github/workflows/node-aught.yml -------------------------------------------------------------------------------- /.github/workflows/node-pretest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.github/workflows/node-pretest.yml -------------------------------------------------------------------------------- /.github/workflows/node-tens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.github/workflows/node-tens.yml -------------------------------------------------------------------------------- /.github/workflows/node-twenties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.github/workflows/node-twenties.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/require-allow-edits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.github/workflows/require-allow-edits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | allow-same-version=true 3 | message=v%s 4 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/.nycrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/import-or-require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/bin/import-or-require.js -------------------------------------------------------------------------------- /bin/tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/bin/tape -------------------------------------------------------------------------------- /example/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/array.js -------------------------------------------------------------------------------- /example/fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/fail.js -------------------------------------------------------------------------------- /example/nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/nested.js -------------------------------------------------------------------------------- /example/nested_fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/nested_fail.js -------------------------------------------------------------------------------- /example/no_callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/no_callback.js -------------------------------------------------------------------------------- /example/not_enough_fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/not_enough_fail.js -------------------------------------------------------------------------------- /example/static/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | browserify ../timing.js -o bundle.js 3 | -------------------------------------------------------------------------------- /example/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/static/index.html -------------------------------------------------------------------------------- /example/static/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/static/server.js -------------------------------------------------------------------------------- /example/stream/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/stream/object.js -------------------------------------------------------------------------------- /example/stream/tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/stream/tap.js -------------------------------------------------------------------------------- /example/stream/test/x_fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/stream/test/x_fail.js -------------------------------------------------------------------------------- /example/stream/test/y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/stream/test/y.js -------------------------------------------------------------------------------- /example/throw_fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/throw_fail.js -------------------------------------------------------------------------------- /example/timing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/timing.js -------------------------------------------------------------------------------- /example/too_many_fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/too_many_fail.js -------------------------------------------------------------------------------- /example/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/example/two.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/index.js -------------------------------------------------------------------------------- /lib/default_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/lib/default_stream.js -------------------------------------------------------------------------------- /lib/isObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/lib/isObject.js -------------------------------------------------------------------------------- /lib/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/lib/results.js -------------------------------------------------------------------------------- /lib/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/lib/test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/package.json -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/readme.markdown -------------------------------------------------------------------------------- /test/add-subtest-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/add-subtest-async.js -------------------------------------------------------------------------------- /test/anonymous-fn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/anonymous-fn.js -------------------------------------------------------------------------------- /test/anonymous-fn/test-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/anonymous-fn/test-wrapper.js -------------------------------------------------------------------------------- /test/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/array.js -------------------------------------------------------------------------------- /test/assertion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/assertion.js -------------------------------------------------------------------------------- /test/async-await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await.js -------------------------------------------------------------------------------- /test/async-await/async-bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await/async-bug.js -------------------------------------------------------------------------------- /test/async-await/async-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await/async-error.js -------------------------------------------------------------------------------- /test/async-await/async1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await/async1.js -------------------------------------------------------------------------------- /test/async-await/async2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await/async2.js -------------------------------------------------------------------------------- /test/async-await/async3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await/async3.js -------------------------------------------------------------------------------- /test/async-await/async4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await/async4.js -------------------------------------------------------------------------------- /test/async-await/async5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await/async5.js -------------------------------------------------------------------------------- /test/async-await/sync-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/async-await/sync-error.js -------------------------------------------------------------------------------- /test/bound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/bound.js -------------------------------------------------------------------------------- /test/browser/asserts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/browser/asserts.js -------------------------------------------------------------------------------- /test/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/capture.js -------------------------------------------------------------------------------- /test/captureFn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/captureFn.js -------------------------------------------------------------------------------- /test/child_ordering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/child_ordering.js -------------------------------------------------------------------------------- /test/circular-things.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/circular-things.js -------------------------------------------------------------------------------- /test/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/comment.js -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/common.js -------------------------------------------------------------------------------- /test/create_multiple_streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/create_multiple_streams.js -------------------------------------------------------------------------------- /test/deep-equal-failure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/deep-equal-failure.js -------------------------------------------------------------------------------- /test/deep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/deep.js -------------------------------------------------------------------------------- /test/default-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/default-messages.js -------------------------------------------------------------------------------- /test/default_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/default_stream.js -------------------------------------------------------------------------------- /test/double_end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/double_end.js -------------------------------------------------------------------------------- /test/double_end/double.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/double_end/double.js -------------------------------------------------------------------------------- /test/edge-cases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/edge-cases.js -------------------------------------------------------------------------------- /test/end-as-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/end-as-callback.js -------------------------------------------------------------------------------- /test/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/error.js -------------------------------------------------------------------------------- /test/exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exit.js -------------------------------------------------------------------------------- /test/exit/fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exit/fail.js -------------------------------------------------------------------------------- /test/exit/missing_end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exit/missing_end.js -------------------------------------------------------------------------------- /test/exit/ok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exit/ok.js -------------------------------------------------------------------------------- /test/exit/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exit/second.js -------------------------------------------------------------------------------- /test/exit/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exit/todo.js -------------------------------------------------------------------------------- /test/exit/todo_fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exit/todo_fail.js -------------------------------------------------------------------------------- /test/exit/too_few.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exit/too_few.js -------------------------------------------------------------------------------- /test/exposed-harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/exposed-harness.js -------------------------------------------------------------------------------- /test/fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/fail.js -------------------------------------------------------------------------------- /test/has spaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/has spaces.js -------------------------------------------------------------------------------- /test/ignore-pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern.js -------------------------------------------------------------------------------- /test/ignore-pattern/.ignore: -------------------------------------------------------------------------------- 1 | fake_node_modules 2 | -------------------------------------------------------------------------------- /test/ignore-pattern/fake_node_modules/stub1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/fake_node_modules/stub1.js -------------------------------------------------------------------------------- /test/ignore-pattern/fake_node_modules/stub2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/fake_node_modules/stub2.js -------------------------------------------------------------------------------- /test/ignore-pattern/fake_other_ignored_dir/stub1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/fake_other_ignored_dir/stub1.js -------------------------------------------------------------------------------- /test/ignore-pattern/fake_other_ignored_dir/stub2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/fake_other_ignored_dir/stub2.js -------------------------------------------------------------------------------- /test/ignore-pattern/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/test.js -------------------------------------------------------------------------------- /test/ignore-pattern/test/stub1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/test/stub1.js -------------------------------------------------------------------------------- /test/ignore-pattern/test/stub2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/test/stub2.js -------------------------------------------------------------------------------- /test/ignore-pattern/test/sub/sub.stub1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/test/sub/sub.stub1.js -------------------------------------------------------------------------------- /test/ignore-pattern/test/sub/sub.stub2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/test/sub/sub.stub2.js -------------------------------------------------------------------------------- /test/ignore-pattern/test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore-pattern/test2.js -------------------------------------------------------------------------------- /test/ignore/.ignore: -------------------------------------------------------------------------------- 1 | fake_node_modules 2 | -------------------------------------------------------------------------------- /test/ignore/fake_node_modules/stub1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore/fake_node_modules/stub1.js -------------------------------------------------------------------------------- /test/ignore/fake_node_modules/stub2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore/fake_node_modules/stub2.js -------------------------------------------------------------------------------- /test/ignore/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore/test.js -------------------------------------------------------------------------------- /test/ignore/test/stub1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore/test/stub1.js -------------------------------------------------------------------------------- /test/ignore/test/stub2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore/test/stub2.js -------------------------------------------------------------------------------- /test/ignore/test/sub/sub.stub1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore/test/sub/sub.stub1.js -------------------------------------------------------------------------------- /test/ignore/test/sub/sub.stub2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore/test/sub/sub.stub2.js -------------------------------------------------------------------------------- /test/ignore/test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore/test2.js -------------------------------------------------------------------------------- /test/ignore_from_gitignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/ignore_from_gitignore.js -------------------------------------------------------------------------------- /test/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import.js -------------------------------------------------------------------------------- /test/import/mjs-a.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/mjs-a.mjs -------------------------------------------------------------------------------- /test/import/mjs-b.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/mjs-b.mjs -------------------------------------------------------------------------------- /test/import/mjs-c.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/mjs-c.mjs -------------------------------------------------------------------------------- /test/import/mjs-d.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/mjs-d.mjs -------------------------------------------------------------------------------- /test/import/mjs-e.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/mjs-e.mjs -------------------------------------------------------------------------------- /test/import/mjs-f.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/mjs-f.mjs -------------------------------------------------------------------------------- /test/import/mjs-g.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/mjs-g.mjs -------------------------------------------------------------------------------- /test/import/mjs-h.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/mjs-h.mjs -------------------------------------------------------------------------------- /test/import/package_type/package-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/package_type/package-a.js -------------------------------------------------------------------------------- /test/import/package_type/package-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/package_type/package-b.js -------------------------------------------------------------------------------- /test/import/package_type/package-c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/package_type/package-c.js -------------------------------------------------------------------------------- /test/import/package_type/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /test/import/syntax-error.cjs: -------------------------------------------------------------------------------- 1 | )) 2 | -------------------------------------------------------------------------------- /test/import/syntax-error.mjs: -------------------------------------------------------------------------------- 1 | )) 2 | -------------------------------------------------------------------------------- /test/import/throws.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/import/throws.cjs -------------------------------------------------------------------------------- /test/import/throws.mjs: -------------------------------------------------------------------------------- 1 | throw new Error('thrown'); 2 | -------------------------------------------------------------------------------- /test/intercept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/intercept.js -------------------------------------------------------------------------------- /test/many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/many.js -------------------------------------------------------------------------------- /test/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/match.js -------------------------------------------------------------------------------- /test/max_listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/max_listeners.js -------------------------------------------------------------------------------- /test/max_listeners/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/max_listeners/source.js -------------------------------------------------------------------------------- /test/messages/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/messages/defaults.js -------------------------------------------------------------------------------- /test/nested-async-plan-noend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/nested-async-plan-noend.js -------------------------------------------------------------------------------- /test/nested-sync-noplan-noend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/nested-sync-noplan-noend.js -------------------------------------------------------------------------------- /test/nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/nested.js -------------------------------------------------------------------------------- /test/nested2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/nested2.js -------------------------------------------------------------------------------- /test/no_callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/no_callback.js -------------------------------------------------------------------------------- /test/no_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/no_only.js -------------------------------------------------------------------------------- /test/no_only/test-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/no_only/test-a.js -------------------------------------------------------------------------------- /test/no_only/test-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/no_only/test-b.js -------------------------------------------------------------------------------- /test/not-deep-equal-failure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/not-deep-equal-failure.js -------------------------------------------------------------------------------- /test/not-equal-failure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/not-equal-failure.js -------------------------------------------------------------------------------- /test/numerics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/numerics.js -------------------------------------------------------------------------------- /test/objectMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/objectMode.js -------------------------------------------------------------------------------- /test/objectModeWithComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/objectModeWithComment.js -------------------------------------------------------------------------------- /test/onFailure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/onFailure.js -------------------------------------------------------------------------------- /test/onFinish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/onFinish.js -------------------------------------------------------------------------------- /test/only-twice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/only-twice.js -------------------------------------------------------------------------------- /test/only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/only.js -------------------------------------------------------------------------------- /test/only2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/only2.js -------------------------------------------------------------------------------- /test/only3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/only3.js -------------------------------------------------------------------------------- /test/only4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/only4.js -------------------------------------------------------------------------------- /test/only5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/only5.js -------------------------------------------------------------------------------- /test/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/order.js -------------------------------------------------------------------------------- /test/plan_optional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/plan_optional.js -------------------------------------------------------------------------------- /test/promise_fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/promise_fail.js -------------------------------------------------------------------------------- /test/promises/fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/promises/fail.js -------------------------------------------------------------------------------- /test/promises/subTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/promises/subTests.js -------------------------------------------------------------------------------- /test/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/require.js -------------------------------------------------------------------------------- /test/require/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/require/a.js -------------------------------------------------------------------------------- /test/require/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/require/b.js -------------------------------------------------------------------------------- /test/require/test-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/require/test-a.js -------------------------------------------------------------------------------- /test/require/test-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/require/test-b.js -------------------------------------------------------------------------------- /test/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/skip.js -------------------------------------------------------------------------------- /test/skip_explanation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/skip_explanation.js -------------------------------------------------------------------------------- /test/stackTrace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/stackTrace.js -------------------------------------------------------------------------------- /test/stack_trace/cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/stack_trace/cjs.js -------------------------------------------------------------------------------- /test/stack_trace/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/stack_trace/esm.mjs -------------------------------------------------------------------------------- /test/strict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/strict.js -------------------------------------------------------------------------------- /test/subcount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/subcount.js -------------------------------------------------------------------------------- /test/subtest_and_async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/subtest_and_async.js -------------------------------------------------------------------------------- /test/subtest_plan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/subtest_plan.js -------------------------------------------------------------------------------- /test/teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/teardown.js -------------------------------------------------------------------------------- /test/throws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/throws.js -------------------------------------------------------------------------------- /test/timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/timeout.js -------------------------------------------------------------------------------- /test/timeoutAfter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/timeoutAfter.js -------------------------------------------------------------------------------- /test/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/todo.js -------------------------------------------------------------------------------- /test/todo_explanation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/todo_explanation.js -------------------------------------------------------------------------------- /test/todo_single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/todo_single.js -------------------------------------------------------------------------------- /test/too_many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/too_many.js -------------------------------------------------------------------------------- /test/undef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/undef.js -------------------------------------------------------------------------------- /test/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tape-testing/tape/HEAD/test/wait.js --------------------------------------------------------------------------------