
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@soldair/cappadonna
Advanced tools
Headless browser testing for tap with coverage reporting.
Cappadonna merges several tools together for integrated testing.
Example:
const path = require('path')
const cappadonna = require('cappadonna')
const test = cappadonna(path.join(__dirname, 'bundle-entry-point.js'))
test('basic test', async (page, t) => {
/* we get a new webpage object with our bundle loaded for every test */
t.plan(1)
let str = '<test-element>pass</test-element>'
/* append string to document.body and wait for the selector to succeed */
await page.appendAndWait(str, 'test-element')
/* execute the given function in the browser */
await page.evaluate(() => {
t.same('pass', document.querySelector('test-element').textContent)
})
})
$ tap tests/test-*.js --coverage
When coverage is enabled all code, including what gets bundled and sent to the browser, will be instrumented and included in coverage.
The test function and t variable are part of tap and document here.
The page object is part of puppeteer and documented here.
Appends the htmlString to the page's body and waits for the selector to return true.
FAQs
Headless browser testing for tap with coverage reporting.
We found that @soldair/cappadonna 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.