Skip to content

Instantly share code, notes, and snippets.

@gbalbuena
Created October 30, 2019 05:53
Show Gist options
  • Save gbalbuena/e4a6a82c22dac198073c18b7170c995e to your computer and use it in GitHub Desktop.
Save gbalbuena/e4a6a82c22dac198073c18b7170c995e to your computer and use it in GitHub Desktop.
jest aws mock __mock__ folder
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