├── .github └── workflows │ ├── badges.yml │ └── ci.yml ├── .gitignore ├── .prettierrc.json ├── README.md ├── cypress.config.js ├── cypress └── e2e │ ├── spec-missing.cy.js │ └── spec.cy.js ├── images ├── app.png └── missing.png ├── package.json ├── renovate.json └── src └── index.js /.github/workflows/badges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/.github/workflows/badges.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | cypress/screenshots/ 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/spec-missing.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/cypress/e2e/spec-missing.cy.js -------------------------------------------------------------------------------- /cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /images/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/images/app.png -------------------------------------------------------------------------------- /images/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/images/missing.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-highlight/HEAD/src/index.js --------------------------------------------------------------------------------