You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hola, como están profes? quería consultarles si esta bien resulto el siguiente ejercicio Test de Unidad.
Ejer 1) Hacer un test que pruebe que el modelo de películas permite eliminar una película.
test("Eliminar pelicula",async()=>{constmovieData={title: 'El dia que me quieras',description: 'Carlos Argüelles is the son of a wealthy man whose only interests in life are business and making money. While trying to succeed in show business he falls in love with a dancer and they elope to marry. But success is not easy to obtain.',year: 1935,runtime: 82,country: 'United States',language: 'Spanish',genres: ['Drama'],directors: ['John Reinhardt'],writers: ['Alfredo Le Pera']};//Insertamos peliculaconstmovieCreated=awaitMovieModels.create(movieData);//Borrar pelicula recien insertada por idawaitMovieModels.delete(movieCreated.id);//Buscar pelicula recien insertada por idconstrecivedMovie=awaitMovieModels.get(movieCreated.id);//Se fija que la pelicula se haya eliminadoexpect(recivedMovie).toBe(null);});
The text was updated successfully, but these errors were encountered:
Hola, como están profes? quería consultarles si esta bien resulto el siguiente ejercicio Test de Unidad.
The text was updated successfully, but these errors were encountered: