The next custom command of django-cypress should be cy.createUser(). This command should:
Create a new user
Support both the default Django User Model and Custom User Model
// Default User model
cy.createUser(username: "django-user", password: "12345678");
// Custom User Model
cy.createUser(email "user@mail.com", password: "12345678");
The implementation should contain tests, documentation, and an example scenario in the example directory.
Description
The next custom command of
django-cypress
should becy.createUser()
. This command should:The implementation should contain tests, documentation, and an example scenario in the
example
directory.