mock-aws-sdk-js
mock-aws-sdk-js copied to clipboard
Create stubbed aws-sdk-js clients for testing purposes
First of all thanks for this, it's been really handy. I expect my tests to be independent from each other, and also to not need to cleanup after themselves. Given...
added extra argument to stub method as some AWS sdk methods take more than 2 arguments e.g waitFor(state, params = {}, callback)
We should be able to specify the response payload in some way that is agnostic to the method our applications use to make the request. Specifying the payload should allow...