Skip to content

Instantly share code, notes, and snippets.

View sir-dunxalot's full-sized avatar
💭
I may be slow to respond.

Duncan Walker sir-dunxalot

💭
I may be slow to respond.
  • Boston, MA
View GitHub Profile
@sir-dunxalot
sir-dunxalot / commands.js
Created May 26, 2020 03:11
cypress-nextjs-auth0__helper--login-with-multiple-users
Cypress.Commands.add('login', (credentials?: Credentials = {}) => {
const { username, password } = credentials;
const credentials = {
username: username || Cypress.env('auth0Username'),
password: password || Cypress.env('auth0Password'),
};
/* ... */
});