├── .babelrc ├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ ├── add-to-triage-board.yml │ ├── snyk_sca_scan.yaml │ ├── snyk_static_analysis_scan.yaml │ └── triage_closed_issue_comment.yml ├── .gitignore ├── .nycrc.json ├── .prettierrc.json ├── .releaserc ├── LICENSE.md ├── README.md ├── common-utils.js ├── cypress-backend.json ├── cypress.config.js ├── cypress ├── README.md ├── e2e │ ├── combine.cy.js │ ├── filtering.cy.js │ ├── fix-source-paths.cy.js │ └── merge.cy.js ├── fixtures │ ├── coverage.json │ └── example.json ├── index.html ├── plugins │ └── index.js └── support │ └── e2e.js ├── images ├── coverage.jpg ├── expect-backend.png ├── gui.png ├── instrumented-code.png ├── warning.png └── window-coverage-object.png ├── middleware ├── express.js ├── hapi.js └── nextjs.js ├── package.json ├── plugins.js ├── renovate.json ├── support-utils.js ├── support.js ├── task-utils.js ├── task.d.ts ├── task.js ├── test-apps ├── all-files │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ ├── index.html │ ├── main.js │ ├── not-covered.js │ ├── package.json │ └── second.js ├── backend │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ └── e2e.js │ ├── package.json │ └── server │ │ ├── index.html │ │ └── server.js ├── batch-send-coverage │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ ├── index.html │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── second.js │ └── third.js ├── before-all-visit │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── fixtures │ │ │ └── example.json │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ └── e2e.js │ ├── index.html │ ├── main.js │ └── package.json ├── before-each-visit │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── fixtures │ │ │ └── example.json │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ └── e2e.js │ ├── index.html │ ├── main.js │ └── package.json ├── cra-e2e-and-ct │ ├── .gitignore │ ├── README.md │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ └── e2e.ts │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── components │ │ │ ├── Button.cy.tsx │ │ │ ├── Button.tsx │ │ │ ├── Stepper.cy.tsx │ │ │ └── Stepper.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ └── tsconfig.json ├── exclude-files │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ ├── index.html │ ├── main.js │ ├── package.json │ └── second.js ├── frontend │ ├── .babelrc │ ├── README.md │ ├── about.html │ ├── about.js │ ├── app.js │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ ├── index.html │ ├── package.json │ └── unit.js ├── fullstack │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ └── e2e.js │ ├── images │ │ └── fullstack.png │ ├── index.html │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── server │ │ └── server.js │ └── string-utils.js ├── multiple-backends │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ └── e2e.js │ ├── package.json │ └── server │ │ ├── index.html │ │ ├── server-3003.js │ │ └── server-3004.js ├── one-spec │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ ├── spec-a.cy.js │ │ │ └── spec-b.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ └── e2e.js │ ├── index.html │ ├── main.js │ ├── package-lock.json │ └── package.json ├── redirect │ ├── .babelrc │ ├── .nycrc.json │ ├── README.md │ ├── app.js │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ └── support │ │ │ └── e2e.js │ ├── index.html │ ├── package.json │ └── utils.js ├── same-folder │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ └── fixtures │ │ │ └── example.json │ ├── index.html │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── plugins.js │ ├── spec.js │ ├── support.js │ └── unit-utils.js ├── support-files │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ ├── index.html │ ├── main.js │ └── package.json ├── ts-example │ ├── .babelrc │ ├── README.md │ ├── calc.ts │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ └── e2e.js │ ├── index.html │ ├── main.ts │ ├── package-lock.json │ └── package.json ├── unit-tests-js │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ ├── spec-a.cy.js │ │ │ └── spec-b.cy.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ └── e2e.js │ ├── package.json │ └── src │ │ └── utils │ │ ├── math.js │ │ └── misc.js └── use-webpack │ ├── .babelrc │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ ├── e2e │ │ └── spec.cy.js │ ├── plugins │ │ └── index.js │ └── support │ │ └── e2e.js │ ├── index.html │ ├── package.json │ ├── src │ ├── calc.js │ └── index.js │ └── webpack.config.js └── use-babelrc.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/add-to-triage-board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.github/workflows/add-to-triage-board.yml -------------------------------------------------------------------------------- /.github/workflows/snyk_sca_scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.github/workflows/snyk_sca_scan.yaml -------------------------------------------------------------------------------- /.github/workflows/snyk_static_analysis_scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.github/workflows/snyk_static_analysis_scan.yaml -------------------------------------------------------------------------------- /.github/workflows/triage_closed_issue_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.github/workflows/triage_closed_issue_comment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.gitignore -------------------------------------------------------------------------------- /.nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.nycrc.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/.releaserc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/README.md -------------------------------------------------------------------------------- /common-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/common-utils.js -------------------------------------------------------------------------------- /cypress-backend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress-backend.json -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/e2e/combine.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/e2e/combine.cy.js -------------------------------------------------------------------------------- /cypress/e2e/filtering.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/e2e/filtering.cy.js -------------------------------------------------------------------------------- /cypress/e2e/fix-source-paths.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/e2e/fix-source-paths.cy.js -------------------------------------------------------------------------------- /cypress/e2e/merge.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/e2e/merge.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/fixtures/coverage.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/index.html -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /images/coverage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/images/coverage.jpg -------------------------------------------------------------------------------- /images/expect-backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/images/expect-backend.png -------------------------------------------------------------------------------- /images/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/images/gui.png -------------------------------------------------------------------------------- /images/instrumented-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/images/instrumented-code.png -------------------------------------------------------------------------------- /images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/images/warning.png -------------------------------------------------------------------------------- /images/window-coverage-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/images/window-coverage-object.png -------------------------------------------------------------------------------- /middleware/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/middleware/express.js -------------------------------------------------------------------------------- /middleware/hapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/middleware/hapi.js -------------------------------------------------------------------------------- /middleware/nextjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/middleware/nextjs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/package.json -------------------------------------------------------------------------------- /plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/plugins.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/renovate.json -------------------------------------------------------------------------------- /support-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/support-utils.js -------------------------------------------------------------------------------- /support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/support.js -------------------------------------------------------------------------------- /task-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/task-utils.js -------------------------------------------------------------------------------- /task.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/task.d.ts -------------------------------------------------------------------------------- /task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/task.js -------------------------------------------------------------------------------- /test-apps/all-files/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/all-files/README.md: -------------------------------------------------------------------------------- 1 | # example: all files 2 | -------------------------------------------------------------------------------- /test-apps/all-files/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/all-files/cypress.config.js -------------------------------------------------------------------------------- /test-apps/all-files/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/all-files/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/all-files/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/all-files/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/all-files/cypress/support/commands.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/all-files/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | require('./commands') 2 | -------------------------------------------------------------------------------- /test-apps/all-files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/all-files/index.html -------------------------------------------------------------------------------- /test-apps/all-files/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/all-files/main.js -------------------------------------------------------------------------------- /test-apps/all-files/not-covered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/all-files/not-covered.js -------------------------------------------------------------------------------- /test-apps/all-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/all-files/package.json -------------------------------------------------------------------------------- /test-apps/all-files/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/all-files/second.js -------------------------------------------------------------------------------- /test-apps/backend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/backend/README.md -------------------------------------------------------------------------------- /test-apps/backend/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/backend/cypress.config.js -------------------------------------------------------------------------------- /test-apps/backend/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/backend/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/backend/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/backend/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/backend/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/backend/package.json -------------------------------------------------------------------------------- /test-apps/backend/server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/backend/server/index.html -------------------------------------------------------------------------------- /test-apps/backend/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/backend/server/server.js -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/README.md -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/cypress.config.js -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/cypress/support/commands.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | require('./commands') 2 | -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/index.html -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/main.js -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/package-lock.json -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/package.json -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/second.js -------------------------------------------------------------------------------- /test-apps/batch-send-coverage/third.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/batch-send-coverage/third.js -------------------------------------------------------------------------------- /test-apps/before-all-visit/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/before-all-visit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-all-visit/README.md -------------------------------------------------------------------------------- /test-apps/before-all-visit/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-all-visit/cypress.config.js -------------------------------------------------------------------------------- /test-apps/before-all-visit/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-all-visit/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/before-all-visit/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-all-visit/cypress/fixtures/example.json -------------------------------------------------------------------------------- /test-apps/before-all-visit/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-all-visit/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/before-all-visit/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/before-all-visit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-all-visit/index.html -------------------------------------------------------------------------------- /test-apps/before-all-visit/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-all-visit/main.js -------------------------------------------------------------------------------- /test-apps/before-all-visit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-all-visit/package.json -------------------------------------------------------------------------------- /test-apps/before-each-visit/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/before-each-visit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-each-visit/README.md -------------------------------------------------------------------------------- /test-apps/before-each-visit/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-each-visit/cypress.config.js -------------------------------------------------------------------------------- /test-apps/before-each-visit/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-each-visit/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/before-each-visit/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-each-visit/cypress/fixtures/example.json -------------------------------------------------------------------------------- /test-apps/before-each-visit/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-each-visit/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/before-each-visit/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/before-each-visit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-each-visit/index.html -------------------------------------------------------------------------------- /test-apps/before-each-visit/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-each-visit/main.js -------------------------------------------------------------------------------- /test-apps/before-each-visit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/before-each-visit/package.json -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/.gitignore -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/README.md -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/cypress.config.ts -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/cypress/fixtures/example.json -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/cypress/support/commands.ts -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/cypress/support/component-index.html -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/cypress/support/component.ts -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/cypress/support/e2e.ts -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/package-lock.json -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/package.json -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/public/favicon.ico -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/public/index.html -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/public/logo192.png -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/public/logo512.png -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/public/manifest.json -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/public/robots.txt -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/App.css -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/App.test.tsx -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/App.tsx -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/components/Button.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/components/Button.cy.tsx -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/components/Button.tsx -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/components/Stepper.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/components/Stepper.cy.tsx -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/components/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/components/Stepper.tsx -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/index.css -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/index.tsx -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/logo.svg -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/reportWebVitals.ts -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/src/setupTests.ts -------------------------------------------------------------------------------- /test-apps/cra-e2e-and-ct/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/cra-e2e-and-ct/tsconfig.json -------------------------------------------------------------------------------- /test-apps/exclude-files/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/exclude-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/README.md -------------------------------------------------------------------------------- /test-apps/exclude-files/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/cypress.config.js -------------------------------------------------------------------------------- /test-apps/exclude-files/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/exclude-files/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/exclude-files/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/cypress/support/commands.js -------------------------------------------------------------------------------- /test-apps/exclude-files/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | require('./commands') 2 | -------------------------------------------------------------------------------- /test-apps/exclude-files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/index.html -------------------------------------------------------------------------------- /test-apps/exclude-files/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/main.js -------------------------------------------------------------------------------- /test-apps/exclude-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/package.json -------------------------------------------------------------------------------- /test-apps/exclude-files/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/exclude-files/second.js -------------------------------------------------------------------------------- /test-apps/frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/.babelrc -------------------------------------------------------------------------------- /test-apps/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/README.md -------------------------------------------------------------------------------- /test-apps/frontend/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/about.html -------------------------------------------------------------------------------- /test-apps/frontend/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/about.js -------------------------------------------------------------------------------- /test-apps/frontend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/app.js -------------------------------------------------------------------------------- /test-apps/frontend/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/cypress.config.js -------------------------------------------------------------------------------- /test-apps/frontend/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/frontend/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/frontend/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/cypress/support/commands.js -------------------------------------------------------------------------------- /test-apps/frontend/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | require('./commands') 2 | -------------------------------------------------------------------------------- /test-apps/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/index.html -------------------------------------------------------------------------------- /test-apps/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/frontend/package.json -------------------------------------------------------------------------------- /test-apps/frontend/unit.js: -------------------------------------------------------------------------------- 1 | export const add = (a, b) => a + b 2 | -------------------------------------------------------------------------------- /test-apps/fullstack/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/fullstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/README.md -------------------------------------------------------------------------------- /test-apps/fullstack/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/cypress.config.js -------------------------------------------------------------------------------- /test-apps/fullstack/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/fullstack/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/fullstack/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/fullstack/images/fullstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/images/fullstack.png -------------------------------------------------------------------------------- /test-apps/fullstack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/index.html -------------------------------------------------------------------------------- /test-apps/fullstack/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/main.js -------------------------------------------------------------------------------- /test-apps/fullstack/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/package-lock.json -------------------------------------------------------------------------------- /test-apps/fullstack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/package.json -------------------------------------------------------------------------------- /test-apps/fullstack/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/server/server.js -------------------------------------------------------------------------------- /test-apps/fullstack/string-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/fullstack/string-utils.js -------------------------------------------------------------------------------- /test-apps/multiple-backends/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/multiple-backends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/multiple-backends/README.md -------------------------------------------------------------------------------- /test-apps/multiple-backends/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/multiple-backends/cypress.config.js -------------------------------------------------------------------------------- /test-apps/multiple-backends/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/multiple-backends/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/multiple-backends/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/multiple-backends/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/multiple-backends/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/multiple-backends/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/multiple-backends/package.json -------------------------------------------------------------------------------- /test-apps/multiple-backends/server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/multiple-backends/server/index.html -------------------------------------------------------------------------------- /test-apps/multiple-backends/server/server-3003.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/multiple-backends/server/server-3003.js -------------------------------------------------------------------------------- /test-apps/multiple-backends/server/server-3004.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/multiple-backends/server/server-3004.js -------------------------------------------------------------------------------- /test-apps/one-spec/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/one-spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/README.md -------------------------------------------------------------------------------- /test-apps/one-spec/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/cypress.config.js -------------------------------------------------------------------------------- /test-apps/one-spec/cypress/e2e/spec-a.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/cypress/e2e/spec-a.cy.js -------------------------------------------------------------------------------- /test-apps/one-spec/cypress/e2e/spec-b.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/cypress/e2e/spec-b.cy.js -------------------------------------------------------------------------------- /test-apps/one-spec/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/one-spec/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/one-spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/index.html -------------------------------------------------------------------------------- /test-apps/one-spec/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/main.js -------------------------------------------------------------------------------- /test-apps/one-spec/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/package-lock.json -------------------------------------------------------------------------------- /test-apps/one-spec/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/one-spec/package.json -------------------------------------------------------------------------------- /test-apps/redirect/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/redirect/.nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/redirect/.nycrc.json -------------------------------------------------------------------------------- /test-apps/redirect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/redirect/README.md -------------------------------------------------------------------------------- /test-apps/redirect/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/redirect/app.js -------------------------------------------------------------------------------- /test-apps/redirect/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/redirect/cypress.config.js -------------------------------------------------------------------------------- /test-apps/redirect/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/redirect/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/redirect/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/redirect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/redirect/index.html -------------------------------------------------------------------------------- /test-apps/redirect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/redirect/package.json -------------------------------------------------------------------------------- /test-apps/redirect/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/redirect/utils.js -------------------------------------------------------------------------------- /test-apps/same-folder/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/same-folder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/README.md -------------------------------------------------------------------------------- /test-apps/same-folder/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/cypress.config.js -------------------------------------------------------------------------------- /test-apps/same-folder/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/cypress/fixtures/example.json -------------------------------------------------------------------------------- /test-apps/same-folder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/index.html -------------------------------------------------------------------------------- /test-apps/same-folder/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/main.js -------------------------------------------------------------------------------- /test-apps/same-folder/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/package-lock.json -------------------------------------------------------------------------------- /test-apps/same-folder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/package.json -------------------------------------------------------------------------------- /test-apps/same-folder/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/plugins.js -------------------------------------------------------------------------------- /test-apps/same-folder/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/spec.js -------------------------------------------------------------------------------- /test-apps/same-folder/support.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/same-folder/unit-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/same-folder/unit-utils.js -------------------------------------------------------------------------------- /test-apps/support-files/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/support-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/support-files/README.md -------------------------------------------------------------------------------- /test-apps/support-files/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/support-files/cypress.config.js -------------------------------------------------------------------------------- /test-apps/support-files/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/support-files/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/support-files/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/support-files/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/support-files/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/support-files/cypress/support/commands.js -------------------------------------------------------------------------------- /test-apps/support-files/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | require('./commands') 2 | -------------------------------------------------------------------------------- /test-apps/support-files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/support-files/index.html -------------------------------------------------------------------------------- /test-apps/support-files/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/support-files/main.js -------------------------------------------------------------------------------- /test-apps/support-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/support-files/package.json -------------------------------------------------------------------------------- /test-apps/ts-example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/ts-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/README.md -------------------------------------------------------------------------------- /test-apps/ts-example/calc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/calc.ts -------------------------------------------------------------------------------- /test-apps/ts-example/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/cypress.config.js -------------------------------------------------------------------------------- /test-apps/ts-example/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/ts-example/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/ts-example/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/ts-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/index.html -------------------------------------------------------------------------------- /test-apps/ts-example/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/main.ts -------------------------------------------------------------------------------- /test-apps/ts-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/package-lock.json -------------------------------------------------------------------------------- /test-apps/ts-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/ts-example/package.json -------------------------------------------------------------------------------- /test-apps/unit-tests-js/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/unit-tests-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/unit-tests-js/README.md -------------------------------------------------------------------------------- /test-apps/unit-tests-js/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/unit-tests-js/cypress.config.js -------------------------------------------------------------------------------- /test-apps/unit-tests-js/cypress/e2e/spec-a.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/unit-tests-js/cypress/e2e/spec-a.cy.js -------------------------------------------------------------------------------- /test-apps/unit-tests-js/cypress/e2e/spec-b.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/unit-tests-js/cypress/e2e/spec-b.cy.js -------------------------------------------------------------------------------- /test-apps/unit-tests-js/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/unit-tests-js/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/unit-tests-js/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import '@cypress/code-coverage/support' 2 | -------------------------------------------------------------------------------- /test-apps/unit-tests-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/unit-tests-js/package.json -------------------------------------------------------------------------------- /test-apps/unit-tests-js/src/utils/math.js: -------------------------------------------------------------------------------- 1 | export const sub = (a, b) => a - b 2 | -------------------------------------------------------------------------------- /test-apps/unit-tests-js/src/utils/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/unit-tests-js/src/utils/misc.js -------------------------------------------------------------------------------- /test-apps/use-webpack/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["istanbul"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/use-webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/README.md -------------------------------------------------------------------------------- /test-apps/use-webpack/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/cypress.config.js -------------------------------------------------------------------------------- /test-apps/use-webpack/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /test-apps/use-webpack/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-apps/use-webpack/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | 2 | import '@cypress/code-coverage/support' -------------------------------------------------------------------------------- /test-apps/use-webpack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/index.html -------------------------------------------------------------------------------- /test-apps/use-webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/package.json -------------------------------------------------------------------------------- /test-apps/use-webpack/src/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/src/calc.js -------------------------------------------------------------------------------- /test-apps/use-webpack/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/src/index.js -------------------------------------------------------------------------------- /test-apps/use-webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/test-apps/use-webpack/webpack.config.js -------------------------------------------------------------------------------- /use-babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/code-coverage/HEAD/use-babelrc.js --------------------------------------------------------------------------------