I'm new to Cypress and using Visual Studio Code as IDE for Cypress. I have written sample test to launch a web page as below and it has written under Cypress Integration folder.
/// <reference types="cypress"/>
it('Page should navigate to todoMVC', () =>{
cy.visit('http://todomvc-app-for-testing.surge.sh/')
})
If try to run this script from Visual Studio Code terminal using
npx cypress open
from Integration folder. Cypress window appears after but newly created xx.spec.js file won't be displayed and no error also. Any help would be appreciated.