Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 463 Bytes

File metadata and controls

9 lines (5 loc) · 463 Bytes

Seeding Your Database in Node

This recipe demonstrates:

  • Seeding your database with node.js using cy.task()

Seeding your database

If you use Node.js for your app, you can re-use your app code to help set up and manipulate data for your tests. In this example, we utilize cy.task() to connect with node via the setupNodeEvents function to re-use the server/db.js and seed the database.