├── .babelrc ├── .circleci └── config.yml ├── .gitignore ├── README.md ├── components ├── Header.js └── MyLayout.js ├── cypress.json ├── cypress ├── README.md ├── fixtures │ └── example.json ├── integration │ └── spec.js ├── plugins │ └── index.js └── support │ └── index.js ├── images ├── e2e.png ├── report.png └── tests.png ├── package.json ├── pages ├── about.js ├── api │ └── __coverage__.js ├── index.js └── p │ └── [id].js └── renovate.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/README.md -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/components/Header.js -------------------------------------------------------------------------------- /components/MyLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/components/MyLayout.js -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/cypress/integration/spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /images/e2e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/images/e2e.png -------------------------------------------------------------------------------- /images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/images/report.png -------------------------------------------------------------------------------- /images/tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/images/tests.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/package.json -------------------------------------------------------------------------------- /pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/pages/about.js -------------------------------------------------------------------------------- /pages/api/__coverage__.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@cypress/code-coverage/middleware/nextjs') 2 | -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/p/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/pages/p/[id].js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/next-and-cypress-example/HEAD/renovate.json --------------------------------------------------------------------------------