Last active
February 21, 2020 21:55
-
-
Save GergKllai1/72da92d86fe28b6febab01390580f227 to your computer and use it in GitHub Desktop.
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
Cypress.Commands.add("loggedInAs", uid => { | |
window.localStorage.setItem("access-token", "jVUfYw92zjFCtGMTZilctw"); | |
window.localStorage.setItem("client", "e_1a0iMA4uG52JMl9f8uog"); | |
window.localStorage.setItem("expiry", "1558352526"); | |
window.localStorage.setItem("token-type", "Bearer"); | |
window.localStorage.setItem("uid", uid); | |
cy.visit("http://localhost:3001"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment