├── .gitignore ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── cypress-audit.spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── images ├── critique.jpg ├── e-commerce.png ├── example-cypress-audit.gif ├── frustrated-user.png ├── google-lighthouse.gif ├── marie-drake.jpg ├── symbol-arrow.jpg └── tom-hanks.gif ├── md-files ├── cypress-audit.md ├── introductions.md ├── performance-metrics.md ├── performance-testing.md └── why-care-for-performance.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "https://www.photobiz.com/" 3 | } 4 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/cypress-audit.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/cypress/integration/cypress-audit.spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- 1 | import 'cypress-audit/commands'; 2 | -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /images/critique.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/images/critique.jpg -------------------------------------------------------------------------------- /images/e-commerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/images/e-commerce.png -------------------------------------------------------------------------------- /images/example-cypress-audit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/images/example-cypress-audit.gif -------------------------------------------------------------------------------- /images/frustrated-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/images/frustrated-user.png -------------------------------------------------------------------------------- /images/google-lighthouse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/images/google-lighthouse.gif -------------------------------------------------------------------------------- /images/marie-drake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/images/marie-drake.jpg -------------------------------------------------------------------------------- /images/symbol-arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/images/symbol-arrow.jpg -------------------------------------------------------------------------------- /images/tom-hanks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/images/tom-hanks.gif -------------------------------------------------------------------------------- /md-files/cypress-audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/md-files/cypress-audit.md -------------------------------------------------------------------------------- /md-files/introductions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/md-files/introductions.md -------------------------------------------------------------------------------- /md-files/performance-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/md-files/performance-metrics.md -------------------------------------------------------------------------------- /md-files/performance-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/md-files/performance-testing.md -------------------------------------------------------------------------------- /md-files/why-care-for-performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/md-files/why-care-for-performance.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdcruz/performance-testing-cypress/HEAD/package.json --------------------------------------------------------------------------------