Skip to content

Instantly share code, notes, and snippets.

@sir-dunxalot
Created May 26, 2020 01:34
Show Gist options
  • Save sir-dunxalot/88cc836eae5a9aeb6b62859364ed4c02 to your computer and use it in GitHub Desktop.
Save sir-dunxalot/88cc836eae5a9aeb6b62859364ed4c02 to your computer and use it in GitHub Desktop.
cypress-nextjs-auth0__spec
context('Logging in', () => {
it('should successfully log in', () => {
cy.login().then(() => {
cy.visit('/');
cy.request('/api/me').then(({ body: user }) => {
expect(user).to.exist;
});
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment