├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── preset.ts └── templates ├── .babelrc ├── index-dom.spec.js ├── index-dom.spec.ts ├── index.spec.js ├── index.spec.ts ├── jest.config.json └── tsconfig.spec.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/package.json -------------------------------------------------------------------------------- /preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/preset.ts -------------------------------------------------------------------------------- /templates/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/templates/.babelrc -------------------------------------------------------------------------------- /templates/index-dom.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/templates/index-dom.spec.js -------------------------------------------------------------------------------- /templates/index-dom.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/templates/index-dom.spec.ts -------------------------------------------------------------------------------- /templates/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/templates/index.spec.js -------------------------------------------------------------------------------- /templates/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/templates/index.spec.ts -------------------------------------------------------------------------------- /templates/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/templates/jest.config.json -------------------------------------------------------------------------------- /templates/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossyman/svelte-add-jest/HEAD/templates/tsconfig.spec.json --------------------------------------------------------------------------------