Skip to content

Instantly share code, notes, and snippets.

@nachmore
Created July 14, 2021 14:01
Show Gist options
  • Save nachmore/3fba72e60e2245b8d0a72293b5bfc2cb to your computer and use it in GitHub Desktop.
Save nachmore/3fba72e60e2245b8d0a72293b5bfc2cb to your computer and use it in GitHub Desktop.
Javascript function (in AWS Lambda form) that crashes ever other minute. Useful for testing Alarms.
exports.handler = async () => {
// causes a crash every other minute by returning an invalid value
return (new Date().getMinutes() % 2) ? () => {} : 1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment