with unit test react how es6 javascript node.js testing jestjs

javascript - unit - jest with es6



Saltar una prueba en el archivo de prueba Jest (2)

Estoy usando el framework Jest y tengo un paquete de prueba. Quiero desactivar / saltar una de mis pruebas.

Googlear la documentación no me da respuestas.

¿Conoces la respuesta o fuente de información para verificar?


Encontré la respuesta aquí

https://devhints.io/jest

test(''it is raining'', () => { expect(inchesOfRain()).toBeGreaterThan(0); }); test.skip(''it is not snowing'', () => { expect(inchesOfSnow()).toBe(0); });

Enlace en off doc


También puede excluir la test o la describe prefijándolos con una x .

Pruebas individuales

describe(''All Test in this describe will be run'', () => { xtest(''Except this test- This test will not be run'', () => { expect(true).toBe(true); }); test(''This test will be run'', () => { expect(true).toBe(true); }); });

Múltiples pruebas dentro de un describir.

xdescribe(''All tests in this describe will be skipped'', () => { test(''This test will be skipped'', () => { expect(true).toBe(true); }); test(''This test will be skipped'', () => { expect(true).toBe(true); }); });