├── .editorconfig ├── .eslintignore ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .snyk ├── .yo-rc.json ├── LICENSE ├── README.md ├── __tests__ ├── app.test.js └── test.test.js ├── generators ├── app │ └── index.js └── test │ ├── index.js │ └── templates │ └── test.js.tpl └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/.snyk -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/__tests__/app.test.js -------------------------------------------------------------------------------- /__tests__/test.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/__tests__/test.test.js -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/generators/test/index.js -------------------------------------------------------------------------------- /generators/test/templates/test.js.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/generators/test/templates/test.js.tpl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/generator-jest/HEAD/package.json --------------------------------------------------------------------------------