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.
@netflix/x-test
Advanced tools
a simple, tap-compliant test runner for the browser
type="module"
The following are exposed in the testing interface:
test
: Creates a sub-test in an iframe
based on given src
html page.it
: The smallest testing unit--asynchronous.skip
: An it
whose callback is not run and which will pass.todo
: An it
whose callback is run and is expected to fail.waitFor
: Ensures the test does not exit until given promise settles.assert
: Simple assertion call that expects a boolean.x-test-ping
: root responds ('x-test-pong', { status: 'started'|'ended' })x-test-ended
: all tests have completed or we bailed outx-test-bail
: [internal] signal to quit test earlyx-test-queue
: [internal] queues a new testx-test-next
: [internal] destroy current test and create a new onex-test-it-started
: [internal] user defined a new "it"x-test-it-ended
: [internal] user-defined "it" completedThe following parameters can be passed in via a url search
:
x-test-no-reporter
: turns off custom reporting tool uiBoth test
and it
calls will execute in order**. test
calls will boot the
given html page in an iframe. Such iframes are run one-at-a-time. All invoked
it
calls await the completion of previously-invoked it
calls.
**This is not the case if you nest it
--but that's an anti-pattern anyhow.
puppeteer
See test.js
for an example of how you can use puppeteer
to run your app's
tests and log the resulting TAP output to the console.
There are many TAP formatters. Importantly, as long as you can pipe the TAP output to another program, the output should be interoperable.
FAQs
a simple, tap-compliant test runner for the browser
We found that @netflix/x-test demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.