Complete the code to specify the folder where test files are stored in Cypress.
cypress/[1]The integration folder is where Cypress test files are placed by default.
Complete the code to specify the folder where reusable commands and utilities are placed.
cypress/[1]The support folder contains reusable commands and utilities to help tests run smoothly.
Fix the error in the folder name that holds test data files.
cypress/[1]The correct folder name for test data files is fixtures (plural).
Fill both blanks to complete the Cypress folder structure for plugins and test files.
cypress/[1] and cypress/[2]
The plugins folder holds code to extend Cypress, and integration holds the test files.
Fill all three blanks to complete the Cypress folder structure for test data, support files, and plugins.
cypress/[1], cypress/[2], and cypress/[3]
The fixtures folder holds test data, support holds reusable commands, and plugins holds code to extend Cypress.