
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
socket.io-mock
Advanced tools
A mock to test the socket.io library implementation.
🚀 Now written in ES6! Bundled with rollup
.
NEW! Added support for disconnect() and close()
npm install socket.io-mock
Simply create new socket mock with:
import MockedSocket from 'socket.io-mock';
let socket = new MockedSocket();
And use the socket as if it was a normal Socket.io socket.
For example:
import SocketMock from 'socket.io-mock';
import { expect } from 'chai';
describe('Fast and isolated socket tests', function(){
it('Sockets should be able to talk to each other without a server', function(done) {
let socket = new SocketMock();
socket.on('message', function (message) {
expect(message).to.equal('Hello World!');
});
socket.socketClient.emit('message', 'Hello World!');
});
});
FAQs
a mocked version of a socket.io socket for testing
The npm package socket.io-mock receives a total of 14,993 weekly downloads. As such, socket.io-mock popularity was classified as popular.
We found that socket.io-mock 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
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.