├── .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 ├── jest.config.json ├── jest.setup.js ├── package.json ├── src ├── App.js ├── App.spec.js ├── __snapshots__ │ └── App.spec.js.snap └── index.js ├── test └── jest.config.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/App.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/cypress/integration/App.e2e.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/dist/index.html -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/jest.config.json -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/src/App.spec.js -------------------------------------------------------------------------------- /src/__snapshots__/App.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/src/__snapshots__/App.spec.js.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/src/index.js -------------------------------------------------------------------------------- /test/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/test/jest.config.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/react-testing-jest-enzyme/HEAD/webpack.config.js --------------------------------------------------------------------------------