Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
test-ipfs-example
Advanced tools
A test suite for testing examples using playwright for browsers and simple output matching for node
A test suite for testing examples using playwright for browsers and simple output matching for node
$ npm i test-ipfs-example
<script>
tagLoading this module through a script tag will make it's exports available as TestIpfsExample
in the global namespace.
<script src="https://unpkg.com/test-ipfs-example/dist/index.min.js"></script>
To run node js tests, create a test file similar to:
import { waitForOutput } from 'test-ipfs-example/node'
await waitForOutput('the output to expect', 'path/to/example.js')
Run it from your package.json
{
"scripts": {
"test": "test-node-example ./my-test.spec.js"
}
}
To run browser tests, create a test file similar to:
import { setup, expect } from 'test-ipfs-example/browser'
const test = setup({
// optionally configure server(s) - if omitted one will be created listening
// on a random high port that serves the contents of the `dist` folder in
// the root of the example
servers: [{
port: 0,
host: '127.0.0.1',
path: 'dist'
}]
})
test.describe('test a browser app', () => {
test.beforeEach(async ({ servers, page }) => {
await page.goto(servers[0].url)
})
test('should have browser success', async ({ page }) => {
// make some playwright assertions here
await page.waitForSelector('#app')
const connections = await page.textContent('#app')
expect(connections).toContain('hello world')
})
})
Run it from your package.json
{
"scripts": {
"test": "test-browser-example ./my-test.spec.js"
}
}
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
FAQs
A test suite for testing examples using playwright for browsers and simple output matching for node
The npm package test-ipfs-example receives a total of 254 weekly downloads. As such, test-ipfs-example popularity was classified as not popular.
We found that test-ipfs-example 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.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.