Open Stavrospanakakis opened 11 months ago
The next custom command of django-cypress should be cy.create(). This command should create a new Django Model.
cy.create()
cy.create("User", {"username": "django-user", "password": "12345678"});
cy.create(ModelName, model_attributes);
The implementation should contain tests, documentation, and an example scenario in the example directory.
Description
Description
The next custom command of django-cypress should be
cy.create()
. This command should create a new Django Model.Example
Syntax
The implementation should contain tests, documentation, and an example scenario in the example directory.