Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 679 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 679 Bytes

teste-unitario-jest

teste-unitario-jest

//Packages to install //================================================== === ==

npm init

npm install --save-dev jest

npm install --save-dev jest-html-reporter

//=======================================================

Package.json setup to exec:

"scripts": { "test": “jest” }, // for Jest executions

//=======================================================

Package.json setup to report:

"jest": { "reporters": [ "default", [ "./node_modules/jest-html-reporter", { "pageTitle": "Test Report“ } ] ] }

//======================================================