Created
October 30, 2019 05:53
-
-
Save gbalbuena/e4a6a82c22dac198073c18b7170c995e to your computer and use it in GitHub Desktop.
jest aws mock __mock__ folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SQS { | |
getQueueAttributes() { | |
return this; | |
} | |
async promise() { | |
return; | |
} | |
} | |
module.exports = { | |
SQS | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment