
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
cypress-html-reporter
Advanced tools
A simple Cypress HTML reporter. Generates an HTML report at the end of the test execution. (Works only for Cypress ver. 13.4 and above)
npm install cypress-html-reporter --save
Add the following to the cypress.config.ts/js file:
const { defineConfig } = require("cypress");
module.exports = defineConfig({
retries: {
runMode: 1
},
e2e: {
video: true,
setupNodeEvents(on, config) {
// implement node event listeners here
require('cypress-html-reporter/GenerateReport')(on, config)
},
},
});
Once the test execution is done, start the report server. (Create a .js file at the project root directory and run following command.)
const startServer = require('cypress-html-reporter/StartServer')
startServer()
This will host the report server (embedded screenshots/video links are blocked by the browser hence this is necessary). Navigate to http://127.0.0.1:8080/ in the browser.
Sample report screenshot can be found at: https://github.com/rk508501/CypressReporter/blob/main/assets/Sample_Report.png
FAQs
A simple HTML report generator for the Cypress tests
The npm package cypress-html-reporter receives a total of 628 weekly downloads. As such, cypress-html-reporter popularity was classified as not popular.
We found that cypress-html-reporter 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.