Cannot call `cy.visit()` outside a running test.
describe('example to-do app', () => {
pages.forEach(page => {
cy.visit(page)
it(`TEST for page ${page}`, () => {
cy.get('.home-section').should('have.length', 4)
})
})
})