I have an rails app with puma 3.0.2, ruby 2.2.4p230 and Rails 4.2.5.2. And the server running
If I try to run this test within cypress.
context "dashboard", ->
beforeEach ->
cy.visit("http://localhost:3000/#/smaply/projects")
it "is dashboard", ->
expect(true).to.be.true
It still doesn't go to localhost:3000 as it resolves the url 127.0.0.1:3000 which doesn't work either in the browser. This might be related to this issue in rails
I have an rails app with puma 3.0.2, ruby 2.2.4p230 and Rails 4.2.5.2. And the server running
If I try to run this test within cypress.
It still doesn't go to localhost:3000 as it resolves the url 127.0.0.1:3000 which doesn't work either in the browser. This might be related to this issue in rails