├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc ├── .travis.yml ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── App.e2e.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── dist └── index.html ├── package.json ├── src ├── App.js ├── App.spec.js └── index.js ├── test ├── dom.js └── helpers.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/App.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/cypress/integration/App.e2e.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/dist/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/src/App.spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/src/index.js -------------------------------------------------------------------------------- /test/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/test/dom.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/test/helpers.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-mocha-chai-enzyme/HEAD/webpack.config.js --------------------------------------------------------------------------------