I'm getting this error on every file using cy.server() after a test file has specified cy.server() in a before after other assertions have run before it.
CypressError: The XHR server is unavailable or missing. This should never happen and likely is a bug. Open an issue if you see this message.
Example Code
describe("Base Describe", function() {
return it("bars", function() {
return expect(true).to.be.true;
});
});
describe("Next Describe", function() {
before(function() {
return cy.server();
});
return it("foos", function() {
return expect(true).to.be.true;
});
});
Command Log Screenshot

I'm getting this error on every file using
cy.server()after a test file has specifiedcy.server()in abeforeafter other assertions have run before it.CypressError: The XHR server is unavailable or missing. This should never happen and likely is a bug. Open an issue if you see this message.Example Code
Command Log Screenshot
