Skip to content

panoplyio/mock-sqs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mock-sqs

Mocking library for Amazon's SQS Node.js SDK

IMPORTANT: This project is a work in progress, and is not yet a complete rewrite of the entire SQS SDK. We add feature support as needed. Any contributions are welcome.

Usage

var mocksqs = require( 'mock-sqs' );

before( function () {
    sinon.stub( aws, 'SQS', mocksqs.SQS );
})

after( function () {
    aws.SQS.restore();
})