When I have a file that has multiple cy.server() in seperate parent-level describe's before, this error is thrown on second cy.server:
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.
Screenshot of Command Log

Example Code
describe "Model 1 [279]", ->
before ->
cy
.visit("views/index.html")
.server()
it "foo bars [27a]", ->
expect(true).to.be.true
describe "Model 2 [27b]", ->
before ->
cy
.visit("views/index.html")
.server()
it "foo bars [27c]", ->
expect(true).to.be.true
When I have a file that has multiple
cy.server()in seperate parent-level describe'sbefore, this error is thrown on secondcy.server:Screenshot of Command Log

Example Code