Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Instruction

Test the Database

Overview

After defining and initializing the Movie model in the previous step, you learned that models are both the objects that you interact with in your application and the tables created and managed in your database. And the ORM (Sequelize) acts as the translator between objects in your code and data stored in a relational database.

In this step, you will test that the 'movies' da...