
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
@durable-streams/server-conformance-tests
Advanced tools
Conformance test suite for Durable Streams server implementations
Protocol compliance test suite for Durable Streams server implementations.
This package provides a comprehensive test suite to verify that a server correctly implements the Durable Streams protocol.
npm install @durable-streams/server-conformance-tests
# or
pnpm add @durable-streams/server-conformance-tests
The easiest way to run conformance tests against your server:
npx @durable-streams/server-conformance-tests --run http://localhost:4437
Watch source files and automatically rerun tests when changes are detected:
npx @durable-streams/server-conformance-tests --watch src http://localhost:4437
# Watch multiple directories
npx @durable-streams/server-conformance-tests --watch src lib http://localhost:4437
Usage:
npx @durable-streams/server-conformance-tests --run <url>
npx @durable-streams/server-conformance-tests --watch <path> [path...] <url>
Options:
--run Run tests once and exit (for CI)
--watch <paths> Watch source paths and rerun tests on changes (for development)
--help, -h Show help message
Arguments:
<url> Base URL of the Durable Streams server to test against
You can also run the conformance tests programmatically within your own test suite:
import { runConformanceTests } from "@durable-streams/server-conformance-tests"
// In your test file (e.g., with vitest)
describe("My Server Implementation", () => {
const config = { baseUrl: "" }
beforeAll(async () => {
// Start your server
const server = await startMyServer({ port: 0 })
config.baseUrl = server.url
})
afterAll(async () => {
await server.stop()
})
// Run all conformance tests
runConformanceTests(config)
})
Add conformance tests to your CI pipeline:
# GitHub Actions example
jobs:
conformance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Start server
run: npm run start:server &
- name: Wait for server
run: npx wait-on http://localhost:4437
- name: Run conformance tests
run: npx @durable-streams/server-conformance-tests --run http://localhost:4437
The conformance test suite covers:
Apache 2.0
FAQs
Conformance test suite for Durable Streams server implementations
The npm package @durable-streams/server-conformance-tests receives a total of 600 weekly downloads. As such, @durable-streams/server-conformance-tests popularity was classified as not popular.
We found that @durable-streams/server-conformance-tests demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.