├── .dockerignore ├── .github ├── dependabot.yml ├── renovate.json └── workflows │ └── nodejs.yml ├── .gitignore ├── .vscode └── settings.json ├── .yarn └── releases │ └── yarn-4.11.0.cjs ├── .yarnrc ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── babel.config.js ├── eslint.config.mjs ├── generator ├── config.js ├── fixtures │ ├── _README.md │ ├── _package.json │ ├── index.js │ └── run.js └── index.js ├── integrationTests ├── __fixtures__ │ ├── failing │ │ ├── __src__ │ │ │ └── file1.js │ │ └── jest.config.js │ ├── passing │ │ ├── __src__ │ │ │ └── file1.js │ │ └── jest.config.js │ ├── skipped │ │ ├── __src__ │ │ │ └── file1.js │ │ └── jest.config.js │ ├── slow │ │ ├── __src__ │ │ │ └── file1.js │ │ └── jest.config.js │ └── todo │ │ ├── __src__ │ │ └── file1.js │ │ └── jest.config.js ├── __snapshots__ │ ├── failing.test.js.snap │ ├── passing.test.js.snap │ ├── skipped.test.js.snap │ ├── slow.test.js.snap │ └── todo.test.js.snap ├── failing.test.js ├── passing.test.js ├── runJest.js ├── runner │ ├── index.js │ └── run.js ├── skipped.test.js ├── slow.test.js └── todo.test.js ├── jest.config.js ├── lib ├── createJestRunner.ts ├── fail.ts ├── index.ts ├── pass.ts ├── skip.ts ├── toTestResult.ts ├── todo.ts └── types.ts ├── package.json ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | undefined -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.11.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/.yarn/releases/yarn-4.11.0.cjs -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/.yarnrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/babel.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /generator/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/generator/config.js -------------------------------------------------------------------------------- /generator/fixtures/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/generator/fixtures/_README.md -------------------------------------------------------------------------------- /generator/fixtures/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/generator/fixtures/_package.json -------------------------------------------------------------------------------- /generator/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/generator/fixtures/index.js -------------------------------------------------------------------------------- /generator/fixtures/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/generator/fixtures/run.js -------------------------------------------------------------------------------- /generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/generator/index.js -------------------------------------------------------------------------------- /integrationTests/__fixtures__/failing/__src__/file1.js: -------------------------------------------------------------------------------- 1 | console.log(); 2 | -------------------------------------------------------------------------------- /integrationTests/__fixtures__/failing/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__fixtures__/failing/jest.config.js -------------------------------------------------------------------------------- /integrationTests/__fixtures__/passing/__src__/file1.js: -------------------------------------------------------------------------------- 1 | // ⚔️🏃 2 | console.log(); 3 | -------------------------------------------------------------------------------- /integrationTests/__fixtures__/passing/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__fixtures__/passing/jest.config.js -------------------------------------------------------------------------------- /integrationTests/__fixtures__/skipped/__src__/file1.js: -------------------------------------------------------------------------------- 1 | // 🙈 2 | console.log(); 3 | -------------------------------------------------------------------------------- /integrationTests/__fixtures__/skipped/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__fixtures__/skipped/jest.config.js -------------------------------------------------------------------------------- /integrationTests/__fixtures__/slow/__src__/file1.js: -------------------------------------------------------------------------------- 1 | // ⚔️🏃 2 | console.log(); 3 | -------------------------------------------------------------------------------- /integrationTests/__fixtures__/slow/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__fixtures__/slow/jest.config.js -------------------------------------------------------------------------------- /integrationTests/__fixtures__/todo/__src__/file1.js: -------------------------------------------------------------------------------- 1 | // 📃 2 | console.log(); 3 | -------------------------------------------------------------------------------- /integrationTests/__fixtures__/todo/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__fixtures__/todo/jest.config.js -------------------------------------------------------------------------------- /integrationTests/__snapshots__/failing.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__snapshots__/failing.test.js.snap -------------------------------------------------------------------------------- /integrationTests/__snapshots__/passing.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__snapshots__/passing.test.js.snap -------------------------------------------------------------------------------- /integrationTests/__snapshots__/skipped.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__snapshots__/skipped.test.js.snap -------------------------------------------------------------------------------- /integrationTests/__snapshots__/slow.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__snapshots__/slow.test.js.snap -------------------------------------------------------------------------------- /integrationTests/__snapshots__/todo.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/__snapshots__/todo.test.js.snap -------------------------------------------------------------------------------- /integrationTests/failing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/failing.test.js -------------------------------------------------------------------------------- /integrationTests/passing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/passing.test.js -------------------------------------------------------------------------------- /integrationTests/runJest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/runJest.js -------------------------------------------------------------------------------- /integrationTests/runner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/runner/index.js -------------------------------------------------------------------------------- /integrationTests/runner/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/runner/run.js -------------------------------------------------------------------------------- /integrationTests/skipped.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/skipped.test.js -------------------------------------------------------------------------------- /integrationTests/slow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/slow.test.js -------------------------------------------------------------------------------- /integrationTests/todo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/integrationTests/todo.test.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /lib/createJestRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/lib/createJestRunner.ts -------------------------------------------------------------------------------- /lib/fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/lib/fail.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/pass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/lib/pass.ts -------------------------------------------------------------------------------- /lib/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/lib/skip.ts -------------------------------------------------------------------------------- /lib/toTestResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/lib/toTestResult.ts -------------------------------------------------------------------------------- /lib/todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/lib/todo.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/lib/types.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jest-community/create-jest-runner/HEAD/yarn.lock --------------------------------------------------------------------------------