├── .gitignore ├── README.md ├── circle.yml ├── cypress.json ├── cypress ├── integration │ ├── spec-a.js │ ├── spec-b.js │ └── spec-c.js ├── plugins │ └── index.js └── support │ └── index.js ├── images ├── ci-view.png ├── junit-fail.png ├── junit-pass.png ├── report.png └── test-artifacts.png ├── package.json └── renovate.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/circle.yml -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/integration/spec-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/cypress/integration/spec-a.js -------------------------------------------------------------------------------- /cypress/integration/spec-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/cypress/integration/spec-b.js -------------------------------------------------------------------------------- /cypress/integration/spec-c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/cypress/integration/spec-c.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /images/ci-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/images/ci-view.png -------------------------------------------------------------------------------- /images/junit-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/images/junit-fail.png -------------------------------------------------------------------------------- /images/junit-pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/images/junit-pass.png -------------------------------------------------------------------------------- /images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/images/report.png -------------------------------------------------------------------------------- /images/test-artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/images/test-artifacts.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-example-reporters/HEAD/renovate.json --------------------------------------------------------------------------------