Last active
March 19, 2020 01:14
-
-
Save ryanjyost/736e1505179b82053c9010245023fa61 to your computer and use it in GitHub Desktop.
fifth
This file contains hidden or 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.verifyLink("Learn React", "https://reactjs.org"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment