No tienes acceso a esta clase

¡Continúa aprendiendo! Únete y comienza a potenciar tu carrera

Agregar reporte

17/24
Recursos

Aportes 4

Preguntas 0

Ordenar por:

¿Quieres ver más aportes, preguntas y respuestas de la comunidad?

De todos los reportes que encontré, me gusto el de jest-allure, buenos gráficos y visualmente entendible.

Agregar al archivo jest.config.js

reporters: [
    'default',
    [
      './node_modules/jest-html-reporter',
      {
        pageTitle: 'Reporte de Pruebas'
      },
    ],
  ],
```js // Use this configuration option to add custom reporters to Jest reporters: [ 'default', [ './node_modules/jest-html-reporter', { pageTitle: 'Reporte de Pruebas' }, ], ], ```// Use this configuration option to add custom reporters to Jest  reporters: \[    'default',    \[      './node\_modules/jest-html-reporter',      {        pageTitle: 'Reporte de Pruebas'      },    ],  ],

Yo usé jest-html-reporters, me gustó su UI.