Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
jest-allure2-reporter
Advanced tools
This is an express guide to get you started quickly. Please visit our documentation website for more information.
Your project should have jest
installed. The minimum supported version is 27.x
.
Run in your project:
npm install --save-dev jest-allure2-reporter@beta
Edit your Jest config, e.g. jest.config.js
:
/** @type {import('@jest/types').Config.InitialOptions} */
module.exports = {
// ...
reporters: [
'default',
+ 'jest-allure2-reporter',
],
// For the most of the features you'll need the custom environment:
+ testEnvironment: 'jest-allure2-reporter/environment-node',
};
Run your tests with jest
as usual, e.g.:
npm test
and then view the results:
ALLURE_NO_ANALYTICS=1 allure serve
If you need to generate a static report, e.g., on CI, run instead:
ALLURE_NO_ANALYTICS=1 allure generate
Make sure you have allure
CLI installed beforehand. For more information about it, refer to the official Allure docs.
See the Contributing guide on the website.
Licensed under MIT License.
FAQs
Idiomatic Jest reporter for Allure Framework
The npm package jest-allure2-reporter receives a total of 2,519 weekly downloads. As such, jest-allure2-reporter popularity was classified as popular.
We found that jest-allure2-reporter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.