Created
March 19, 2020 01:12
-
-
Save ryanjyost/9bc0a1aa105dc0914ffab1a7434c35d8 to your computer and use it in GitHub Desktop.
fourth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it("has a link pointing to the react website", function() { | |
cy.server(); | |
cy.route("/200?**").as("fakeNetworkRequest"); | |
cy.visit("http://localhost:3000"); | |
cy.wait("@fakeNetworkRequest"); | |
cy.findByText("Learn React").should( | |
"have.attr", | |
"href", | |
"https://reactjs.org" | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment