Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
testcafe-reporter-cucumber-json
Advanced tools
This is the Cucumber JSON reporter plugin for TestCafe.
npm install --save testcafe-reporter-cucumber-json
.--reporter cucumber-json:reports/report.json --reporter-app-name='My App' --reporter-app-version='x.y.z'
install multiple-cucumber-html-reporter (version >= 1.10.0):
npm install --save-dev multiple-cucumber-html-reporter
Create a report-generator.js
file at the project root:
const report = require('multiple-cucumber-html-reporter');
const path = require('path');
const projectName = path.basename(__dirname);
const projectVersion = process.env.npm_package_version;
const reportGenerationTime = (new Date()).toISOString();
report.generate({
reportName: 'TestCafe Report',
jsonDir: 'reports',
reportPath: 'reports',
openReportInBrowser: true,
disableLog: true,
displayDuration: true,
durationInMS: true,
customData: {
title: 'Run info',
data: [
{label: 'Project', value: `${projectName}`},
{label: 'Release', value: `${projectVersion}`},
{label: 'Report Generation Time', value: `${reportGenerationTime}`},
]
}
});
package.json
file:"report": "node report-generator.js",
npm run report
FAQs
Cucumber JSON TestCafe reporter plugin.
The npm package testcafe-reporter-cucumber-json receives a total of 7,376 weekly downloads. As such, testcafe-reporter-cucumber-json popularity was classified as popular.
We found that testcafe-reporter-cucumber-json demonstrated a not healthy version release cadence and project activity because the last version was released 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.