├── .gitignore ├── README.md ├── index.js ├── index.test.js ├── jest.config.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-esmodules/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | export default 'hello' 2 | -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-esmodules/HEAD/index.test.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | transform: {}, 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-esmodules/HEAD/package.json --------------------------------------------------------------------------------