Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A mocha UI & reporter to list tests without running.
Useful if you want to provide a report of test cases covered.
To run, e.g., on tests in tests/runs
:
mocha --ui mocha-list --reporter mocha-list tests/runs
You may need custom code to mock certain globals from your tests. You can do so by creating a script to run your tests programmatically.
We expose a mocha-list/run
file to make this easy.
import run from 'mocha-list/run'
import stubObjProxy from 'stub-obj-proxy'
import { join } from 'path'
const testDir = join(__dirname, 'runs')
const mochaOpts = {}
// You can mock whatever you need to here.
global.window = stubObjProxy()
run(testDir, mochaOpts)
For more examples, see:
We have to link mocha-list
to itself since third party reporters read from node_modules
:
yarn link-self
FAQs
A mocha UI & reporter to list tests without running.
We found that mocha-list 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.