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.
testem-time-reporter
Advanced tools
Helpful in diagnosing long running tests. Reporter shows long running tests in colors based on thresholds. It also shows failures and error messages.
npm install --save-dev testem-time-reporter
Create a testem.js
config file that sets reporter to testem-time-reporter
:
const TimeReporter = require('testem-time-reporter');
module.exports = {
framework: 'qunit',
test_page: 'tests/index.html?hidepassed&coverage',
disable_watching: true,
launch_in_ci: [
'PhantomJS'
],
reporter: new TimeReporter()
};
Run tests in an Ember CLI project, reporting only failures:
ember test --config-file ~/work/project/testem.js
This currently doesn't work with ember test --module some-module
because Ember CLI
rewrites the testem.json
file to accomplish this, and doesn't support the
testem.js
file.
FAQs
A testem reporter for highlighting tests
The npm package testem-time-reporter receives a total of 454 weekly downloads. As such, testem-time-reporter popularity was classified as not popular.
We found that testem-time-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.
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.