├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE.md ├── README.md ├── dangerfile.ts ├── package.json ├── src ├── __tests__ │ ├── __fixtures__ │ │ ├── failed-tests-j20.json │ │ ├── failing-tests.json │ │ └── passing-tests.json │ ├── fails.test.ts │ └── index.test.ts ├── ambient.d.ts ├── index.ts └── types.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/README.md -------------------------------------------------------------------------------- /dangerfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/dangerfile.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__fixtures__/failed-tests-j20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/src/__tests__/__fixtures__/failed-tests-j20.json -------------------------------------------------------------------------------- /src/__tests__/__fixtures__/failing-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/src/__tests__/__fixtures__/failing-tests.json -------------------------------------------------------------------------------- /src/__tests__/__fixtures__/passing-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/src/__tests__/__fixtures__/passing-tests.json -------------------------------------------------------------------------------- /src/__tests__/fails.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/src/__tests__/fails.test.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/src/ambient.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-jest/HEAD/yarn.lock --------------------------------------------------------------------------------