├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src └── Foo.js └── test ├── .setup.js └── Foo-test.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | presets: ["airbnb"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandrichardson/enzyme-example-mocha/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandrichardson/enzyme-example-mocha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandrichardson/enzyme-example-mocha/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandrichardson/enzyme-example-mocha/HEAD/package.json -------------------------------------------------------------------------------- /src/Foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandrichardson/enzyme-example-mocha/HEAD/src/Foo.js -------------------------------------------------------------------------------- /test/.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandrichardson/enzyme-example-mocha/HEAD/test/.setup.js -------------------------------------------------------------------------------- /test/Foo-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandrichardson/enzyme-example-mocha/HEAD/test/Foo-test.js --------------------------------------------------------------------------------