├── .eslintignore ├── .eslintrc ├── .github ├── renovate.json └── workflows │ └── nodejs.yml ├── .gitignore ├── .yarn └── releases │ └── yarn-3.8.7.cjs ├── .yarnrc.yml ├── LICENSE.md ├── README.md ├── babel.config.js ├── e2e ├── __fixtures__ │ ├── errors-syntax │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.test.ts │ │ └── package.json │ ├── errors-tsconfig │ │ ├── index.test.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── js-failing │ │ ├── index.d.ts │ │ ├── index.test.ts │ │ └── package.json │ ├── js-passing │ │ ├── index.d.ts │ │ ├── index.test.ts │ │ └── package.json │ ├── override-tsconfig │ │ ├── index.test.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── ts-failing │ │ ├── index.test.ts │ │ ├── index.ts │ │ └── package.json │ ├── ts-passing │ │ ├── index.test.ts │ │ └── package.json │ └── tsconfig.json ├── __snapshots__ │ ├── errors.test.ts.snap │ ├── failing.test.ts.snap │ ├── override.test.ts.snap │ └── passing.test.ts.snap ├── errors.test.ts ├── failing.test.ts ├── override.test.ts ├── passing.test.ts ├── runJest.ts └── tsconfig.json ├── jest.config.js ├── package.json ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── runTest.test.ts.snap │ ├── runTest.test.ts │ └── tsconfig.json ├── formatter.js ├── index.js └── run.js ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | .yarn 2 | build 3 | coverage 4 | e2e/__fixtures__/errors-syntax 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.8.7.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/.yarn/releases/yarn-3.8.7.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/babel.config.js -------------------------------------------------------------------------------- /e2e/__fixtures__/errors-syntax/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/errors-syntax/index.d.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/errors-syntax/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/errors-syntax/index.js -------------------------------------------------------------------------------- /e2e/__fixtures__/errors-syntax/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/errors-syntax/index.test.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/errors-syntax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/errors-syntax/package.json -------------------------------------------------------------------------------- /e2e/__fixtures__/errors-tsconfig/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/errors-tsconfig/index.test.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/errors-tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/errors-tsconfig/package.json -------------------------------------------------------------------------------- /e2e/__fixtures__/errors-tsconfig/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/errors-tsconfig/tsconfig.json -------------------------------------------------------------------------------- /e2e/__fixtures__/js-failing/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/js-failing/index.d.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/js-failing/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/js-failing/index.test.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/js-failing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/js-failing/package.json -------------------------------------------------------------------------------- /e2e/__fixtures__/js-passing/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/js-passing/index.d.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/js-passing/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/js-passing/index.test.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/js-passing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/js-passing/package.json -------------------------------------------------------------------------------- /e2e/__fixtures__/override-tsconfig/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/override-tsconfig/index.test.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/override-tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/override-tsconfig/package.json -------------------------------------------------------------------------------- /e2e/__fixtures__/override-tsconfig/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/override-tsconfig/tsconfig.json -------------------------------------------------------------------------------- /e2e/__fixtures__/ts-failing/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/ts-failing/index.test.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/ts-failing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/ts-failing/index.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/ts-failing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/ts-failing/package.json -------------------------------------------------------------------------------- /e2e/__fixtures__/ts-passing/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/ts-passing/index.test.ts -------------------------------------------------------------------------------- /e2e/__fixtures__/ts-passing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/ts-passing/package.json -------------------------------------------------------------------------------- /e2e/__fixtures__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__fixtures__/tsconfig.json -------------------------------------------------------------------------------- /e2e/__snapshots__/errors.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__snapshots__/errors.test.ts.snap -------------------------------------------------------------------------------- /e2e/__snapshots__/failing.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__snapshots__/failing.test.ts.snap -------------------------------------------------------------------------------- /e2e/__snapshots__/override.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__snapshots__/override.test.ts.snap -------------------------------------------------------------------------------- /e2e/__snapshots__/passing.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/__snapshots__/passing.test.ts.snap -------------------------------------------------------------------------------- /e2e/errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/errors.test.ts -------------------------------------------------------------------------------- /e2e/failing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/failing.test.ts -------------------------------------------------------------------------------- /e2e/override.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/override.test.ts -------------------------------------------------------------------------------- /e2e/passing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/passing.test.ts -------------------------------------------------------------------------------- /e2e/runJest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/runJest.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/runTest.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/src/__tests__/__snapshots__/runTest.test.ts.snap -------------------------------------------------------------------------------- /src/__tests__/runTest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/src/__tests__/runTest.test.ts -------------------------------------------------------------------------------- /src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/src/__tests__/tsconfig.json -------------------------------------------------------------------------------- /src/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/src/formatter.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/src/index.js -------------------------------------------------------------------------------- /src/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/src/run.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/jest-runner-tsd/HEAD/yarn.lock --------------------------------------------------------------------------------