├── .editorconfig ├── .gitattributes ├── .gitignore ├── .iron-node.js ├── .travis.yml ├── api.js ├── appveyor.yml ├── bench ├── compare.js ├── concurrent │ ├── alternating-sync-async.js │ ├── async-immediate.js │ ├── async-timeout.js │ └── sync.js ├── other │ └── failures.js ├── run.js └── serial │ ├── alternating-sync-async.js │ ├── async-immediate.js │ ├── async-timeout.js │ └── sync.js ├── cli.js ├── docs ├── common-pitfalls.md ├── recipes │ ├── babelrc.md │ ├── browser-testing.md │ ├── code-coverage.md │ ├── debugging-with-chrome-devtools.md │ ├── debugging-with-vscode.md │ ├── debugging-with-webstorm.md │ ├── endpoint-testing-with-mongoose.md │ ├── endpoint-testing.md │ ├── isolated-mongodb-integration-tests.md │ ├── jspm-systemjs.md │ ├── precompiling-with-webpack.md │ ├── react.md │ ├── typescript.md │ ├── vue.md │ ├── watch-mode.md │ └── when-to-use-plan.md └── specs │ └── 001 - Improving language support.md ├── index.js ├── index.js.flow ├── lib ├── assert.js ├── ava-error.js ├── ava-files.js ├── babel-config.js ├── beautify-stack.js ├── caching-precompiler.js ├── cli.js ├── code-excerpt.js ├── colors.js ├── concordance-options.js ├── concurrent.js ├── enhance-assert.js ├── fork.js ├── globals.js ├── logger.js ├── main.js ├── prefix-title.js ├── process-adapter.js ├── reporters │ ├── format-serialized-error.js │ ├── improper-usage-messages.js │ ├── mini.js │ ├── tap.js │ └── verbose.js ├── run-status.js ├── runner.js ├── sequence.js ├── serialize-error.js ├── snapshot-manager.js ├── test-collection.js ├── test-worker.js ├── test.js ├── validate-test.js └── watcher.js ├── license ├── media ├── header.png ├── header.psd ├── logo.ai ├── logo.png ├── logo.svg ├── magic-assert-combined.png ├── magic-assert-nested.png ├── magic-assert-objects.png ├── magic-assert-strings.png ├── mini-reporter.gif ├── pronunciation.m4a ├── screenshot-fixtures │ ├── magic-assert-buffers.js │ ├── magic-assert-exceptions.js │ ├── magic-assert-nested.js │ ├── magic-assert-objects.js │ ├── magic-assert-strings.js │ ├── mini-reporter.md │ ├── snapshot-testing.md │ ├── tap-reporter.js │ └── verbose-reporter.js ├── snapshot-testing.png ├── tap-reporter.png └── verbose-reporter.png ├── package.json ├── profile.js ├── readme.md ├── test ├── fixture │ ├── infinity-stack-trace.js │ └── std-esm │ │ ├── .esmrc │ │ ├── index.js │ │ └── test.js ├── flow-types │ └── log.js.flow ├── sample.ts └── sample.tsx ├── tsconfig.json └── types ├── base.d.ts └── make.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.iron-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/.iron-node.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/.travis.yml -------------------------------------------------------------------------------- /api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/api.js -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bench/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/compare.js -------------------------------------------------------------------------------- /bench/concurrent/alternating-sync-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/concurrent/alternating-sync-async.js -------------------------------------------------------------------------------- /bench/concurrent/async-immediate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/concurrent/async-immediate.js -------------------------------------------------------------------------------- /bench/concurrent/async-timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/concurrent/async-timeout.js -------------------------------------------------------------------------------- /bench/concurrent/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/concurrent/sync.js -------------------------------------------------------------------------------- /bench/other/failures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/other/failures.js -------------------------------------------------------------------------------- /bench/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/run.js -------------------------------------------------------------------------------- /bench/serial/alternating-sync-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/serial/alternating-sync-async.js -------------------------------------------------------------------------------- /bench/serial/async-immediate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/serial/async-immediate.js -------------------------------------------------------------------------------- /bench/serial/async-timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/serial/async-timeout.js -------------------------------------------------------------------------------- /bench/serial/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/bench/serial/sync.js -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/cli.js -------------------------------------------------------------------------------- /docs/common-pitfalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/common-pitfalls.md -------------------------------------------------------------------------------- /docs/recipes/babelrc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/babelrc.md -------------------------------------------------------------------------------- /docs/recipes/browser-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/browser-testing.md -------------------------------------------------------------------------------- /docs/recipes/code-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/code-coverage.md -------------------------------------------------------------------------------- /docs/recipes/debugging-with-chrome-devtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/debugging-with-chrome-devtools.md -------------------------------------------------------------------------------- /docs/recipes/debugging-with-vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/debugging-with-vscode.md -------------------------------------------------------------------------------- /docs/recipes/debugging-with-webstorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/debugging-with-webstorm.md -------------------------------------------------------------------------------- /docs/recipes/endpoint-testing-with-mongoose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/endpoint-testing-with-mongoose.md -------------------------------------------------------------------------------- /docs/recipes/endpoint-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/endpoint-testing.md -------------------------------------------------------------------------------- /docs/recipes/isolated-mongodb-integration-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/isolated-mongodb-integration-tests.md -------------------------------------------------------------------------------- /docs/recipes/jspm-systemjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/jspm-systemjs.md -------------------------------------------------------------------------------- /docs/recipes/precompiling-with-webpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/precompiling-with-webpack.md -------------------------------------------------------------------------------- /docs/recipes/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/react.md -------------------------------------------------------------------------------- /docs/recipes/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/typescript.md -------------------------------------------------------------------------------- /docs/recipes/vue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/vue.md -------------------------------------------------------------------------------- /docs/recipes/watch-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/watch-mode.md -------------------------------------------------------------------------------- /docs/recipes/when-to-use-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/recipes/when-to-use-plan.md -------------------------------------------------------------------------------- /docs/specs/001 - Improving language support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/docs/specs/001 - Improving language support.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/index.js -------------------------------------------------------------------------------- /index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/index.js.flow -------------------------------------------------------------------------------- /lib/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/assert.js -------------------------------------------------------------------------------- /lib/ava-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/ava-error.js -------------------------------------------------------------------------------- /lib/ava-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/ava-files.js -------------------------------------------------------------------------------- /lib/babel-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/babel-config.js -------------------------------------------------------------------------------- /lib/beautify-stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/beautify-stack.js -------------------------------------------------------------------------------- /lib/caching-precompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/caching-precompiler.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/code-excerpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/code-excerpt.js -------------------------------------------------------------------------------- /lib/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/colors.js -------------------------------------------------------------------------------- /lib/concordance-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/concordance-options.js -------------------------------------------------------------------------------- /lib/concurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/concurrent.js -------------------------------------------------------------------------------- /lib/enhance-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/enhance-assert.js -------------------------------------------------------------------------------- /lib/fork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/fork.js -------------------------------------------------------------------------------- /lib/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/globals.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/prefix-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/prefix-title.js -------------------------------------------------------------------------------- /lib/process-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/process-adapter.js -------------------------------------------------------------------------------- /lib/reporters/format-serialized-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/reporters/format-serialized-error.js -------------------------------------------------------------------------------- /lib/reporters/improper-usage-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/reporters/improper-usage-messages.js -------------------------------------------------------------------------------- /lib/reporters/mini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/reporters/mini.js -------------------------------------------------------------------------------- /lib/reporters/tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/reporters/tap.js -------------------------------------------------------------------------------- /lib/reporters/verbose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/reporters/verbose.js -------------------------------------------------------------------------------- /lib/run-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/run-status.js -------------------------------------------------------------------------------- /lib/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/runner.js -------------------------------------------------------------------------------- /lib/sequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/sequence.js -------------------------------------------------------------------------------- /lib/serialize-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/serialize-error.js -------------------------------------------------------------------------------- /lib/snapshot-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/snapshot-manager.js -------------------------------------------------------------------------------- /lib/test-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/test-collection.js -------------------------------------------------------------------------------- /lib/test-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/test-worker.js -------------------------------------------------------------------------------- /lib/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/test.js -------------------------------------------------------------------------------- /lib/validate-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/validate-test.js -------------------------------------------------------------------------------- /lib/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/lib/watcher.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/license -------------------------------------------------------------------------------- /media/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/header.png -------------------------------------------------------------------------------- /media/header.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/header.psd -------------------------------------------------------------------------------- /media/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/logo.ai -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/logo.svg -------------------------------------------------------------------------------- /media/magic-assert-combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/magic-assert-combined.png -------------------------------------------------------------------------------- /media/magic-assert-nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/magic-assert-nested.png -------------------------------------------------------------------------------- /media/magic-assert-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/magic-assert-objects.png -------------------------------------------------------------------------------- /media/magic-assert-strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/magic-assert-strings.png -------------------------------------------------------------------------------- /media/mini-reporter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/mini-reporter.gif -------------------------------------------------------------------------------- /media/pronunciation.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/pronunciation.m4a -------------------------------------------------------------------------------- /media/screenshot-fixtures/magic-assert-buffers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/screenshot-fixtures/magic-assert-buffers.js -------------------------------------------------------------------------------- /media/screenshot-fixtures/magic-assert-exceptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/screenshot-fixtures/magic-assert-exceptions.js -------------------------------------------------------------------------------- /media/screenshot-fixtures/magic-assert-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/screenshot-fixtures/magic-assert-nested.js -------------------------------------------------------------------------------- /media/screenshot-fixtures/magic-assert-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/screenshot-fixtures/magic-assert-objects.js -------------------------------------------------------------------------------- /media/screenshot-fixtures/magic-assert-strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/screenshot-fixtures/magic-assert-strings.js -------------------------------------------------------------------------------- /media/screenshot-fixtures/mini-reporter.md: -------------------------------------------------------------------------------- 1 | Run the [Got](https://github.com/sindresorhus/got) tests. 2 | -------------------------------------------------------------------------------- /media/screenshot-fixtures/snapshot-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/screenshot-fixtures/snapshot-testing.md -------------------------------------------------------------------------------- /media/screenshot-fixtures/tap-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/screenshot-fixtures/tap-reporter.js -------------------------------------------------------------------------------- /media/screenshot-fixtures/verbose-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/screenshot-fixtures/verbose-reporter.js -------------------------------------------------------------------------------- /media/snapshot-testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/snapshot-testing.png -------------------------------------------------------------------------------- /media/tap-reporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/tap-reporter.png -------------------------------------------------------------------------------- /media/verbose-reporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/media/verbose-reporter.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/package.json -------------------------------------------------------------------------------- /profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/profile.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixture/infinity-stack-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/test/fixture/infinity-stack-trace.js -------------------------------------------------------------------------------- /test/fixture/std-esm/.esmrc: -------------------------------------------------------------------------------- 1 | { 2 | "esm": "cjs" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixture/std-esm/index.js: -------------------------------------------------------------------------------- 1 | export default 'foo'; 2 | -------------------------------------------------------------------------------- /test/fixture/std-esm/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/test/fixture/std-esm/test.js -------------------------------------------------------------------------------- /test/flow-types/log.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/test/flow-types/log.js.flow -------------------------------------------------------------------------------- /test/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/test/sample.ts -------------------------------------------------------------------------------- /test/sample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/test/sample.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "jsx": "react" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /types/base.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/types/base.d.ts -------------------------------------------------------------------------------- /types/make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/ava-ts/HEAD/types/make.js --------------------------------------------------------------------------------