A simple mocking framework for amqplib. Currently supports the following:
- Multiple connections
- Routing messages based on routingKey
- Retrieving any published messages on a channel
- Asserting topology
- The server remotely closing a channel
const amqplib = require( "amqplib-mocks" );
const proxyquire = require( "proxyquire" );
const server = proxyquire( "./app", { amqplib } );
server.listen();