✔️Ejercicio sesión 2
En el Ejemplo 4 (Hook) hemos visto como podemos hacer un test unitario de un Hook creando un componente TestingComponent()
que llame al hook que queremos testear (useCart()
)
Otra forma para testear hooks en react es usar la función renderHook()
¿Cómo quedaría el test del ejemplo 4 usando la función renderHook()
en lugar de creando un componente TestingComponent()
al vuelo ?
Last updated