https://i.sstatic.net/z6bmW.png
I encountered an error while attempting to run a test file that I created. The default tests run smoothly, but the error only occurs with the file I created.
import {cypress as cy} from "cypress"
describe('Testing form inputs', () => {
beforeEach(() => {
cy.visit('http://localhost:3000')
})
});
describe('My First Test', () => {
it('Does not do much!', () => {
expect(true).to.equal(true);
})
});
describe('My New Test' , function () {
it('Visits index site', function (){
cy.visit("index.html");
})
});